1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 1× 1× 2734× 1× 2686× 1× 1× | "use strict"; var SpyCall = (function () { function SpyCall(args) { this._args = args; } Object.defineProperty(SpyCall.prototype, "args", { get: function () { return this._args; }, enumerable: true, configurable: true }); return SpyCall; }()); exports.SpyCall = SpyCall; //# sourceMappingURL=spy-call.js.map |