all files / core/spying/ spy-call.js

100% Statements 7/7
100% Branches 0/0
100% Functions 3/3
100% Lines 7/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  4666×     4614×            
"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