yuidoc-extras/SpyCall.js
/**
* Structure class that represents a function call
*
* @class gabarito.SpyCall
* @constructor
*/
/**
* The `this` object within the function call
*
* @property that
* @for gabarito.SpyCall
* @type {object}
*/
/**
* The arguments lists given to the function call
*
* @property args
* @for gabarito.SpyCall
* @type {mixed[]}
*/
/**
* The given order number for the function call
*
* @property order
* @for gabarito.SpyCall
* @type {number}
*/
/**
* The return value for the function call
*
* @property returning
* @for gabarito.SpyCall
* @type {mixed}
*/
/**
* The error thrown by the function call
*
* @property thrown
* @for gabarito.SpyCall
* @type {mixed}
*/