all files / TypeScript.NET/source/System/Collections/Enumeration/ IteratorEnumerator.js

51.16% Statements 22/43
32% Branches 8/25
50% Functions 5/10
52.63% Lines 20/38
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57                                                                         
/*!
 * @author electricessence / https://github.com/electricessence/
 * Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
 */
var __extends = (this && this.__extends) || function (d, b) {
    for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
    function __() { this.constructor = d; }
    d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
(function (factory) {
    Eif (typeof module === 'object' && typeof module.exports === 'object') {
        var v = factory(require, exports); Iif (v !== undefined) module.exports = v;
    }
    else if (typeof define === 'function' && define.amd) {
        define(["require", "exports", "./SimpleEnumerableBase"], factory);
    }
})(function (require, exports) {
    "use strict";
    var SimpleEnumerableBase_1 = require("./SimpleEnumerableBase");
    var VOID0 = void 0;
    var IteratorEnumerator = (function (_super) {
        __extends(IteratorEnumerator, _super);
        function IteratorEnumerator(_iterator, _isEndless) {
            _super.call(this);
            this._iterator = _iterator;
            this._isEndless = _isEndless;
        }
        IteratorEnumerator.prototype.canMoveNext = function () {
            return this._iterator != null;
        };
        IteratorEnumerator.prototype.moveNext = function (value) {
            var _ = this;
            var i = _._iterator;
            if (i) {
                var r = arguments.length ? i.next(value) : i.next();
                _._current = r.value;
                if (r.done)
                    _.dispose();
                else
                    return true;
            }
            return false;
        };
        IteratorEnumerator.prototype.dispose = function () {
            _super.prototype.dispose.call(this);
            this._iterator = VOID0;
        };
        IteratorEnumerator.prototype.getIsEndless = function () {
            return this._isEndless && _super.prototype.getIsEndless.call(this);
        };
        return IteratorEnumerator;
    }(SimpleEnumerableBase_1.SimpleEnumerableBase));
    exports.IteratorEnumerator = IteratorEnumerator;
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.default = IteratorEnumerator;
});
//# sourceMappingURL=IteratorEnumerator.js.map