Code coverage report for cjs/util/EmptyError.js

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

All files » cjs/util/ » EmptyError.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 151 2 1 1   1 1 1 12 12   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 __());
};
var EmptyError = (function (_super) {
    __extends(EmptyError, _super);
    function EmptyError() {
        _super.call(this, 'no elements in sequence');
        this.name = 'EmptyError';
    }
    return EmptyError;
})(Error);
exports.EmptyError = EmptyError;
//# sourceMappingURL=EmptyError.js.map