Code coverage report for cjs/util/ObjectUnsubscribedError.js

Statements: 100% (14 / 14)      Branches: 71.43% (5 / 7)      Functions: 100% (4 / 4)      Lines: 100% (11 / 11)      Ignored: none     

All files » cjs/util/ » ObjectUnsubscribedError.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 191 2 1 1           1 1 1 2 2   1   1  
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) Eif (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
/**
 * an error thrown when an action is invalid because the object
 * has been unsubscribed
 */
var ObjectUnsubscribedError = (function (_super) {
    __extends(ObjectUnsubscribedError, _super);
    function ObjectUnsubscribedError() {
        _super.call(this, 'object unsubscribed');
        this.name = 'ObjectUnsubscribedError';
    }
    return ObjectUnsubscribedError;
})(Error);
exports.ObjectUnsubscribedError = ObjectUnsubscribedError;
//# sourceMappingURL=ObjectUnsubscribedError.js.map