123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __values = (this && this.__values) || function(o) {
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
- if (m) return m.call(o);
- if (o && typeof o.length === "number") return {
- next: function () {
- if (o && i >= o.length) o = void 0;
- return { value: o && o[i++], done: !o };
- }
- };
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
- };
- var __read = (this && this.__read) || function (o, n) {
- var m = typeof Symbol === "function" && o[Symbol.iterator];
- if (!m) return o;
- var i = m.call(o), r, ar = [], e;
- try {
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
- }
- catch (error) { e = { error: error }; }
- finally {
- try {
- if (r && !r.done && (m = i["return"])) m.call(i);
- }
- finally { if (e) throw e.error; }
- }
- return ar;
- };
- var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
- if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
- if (ar || !(i in from)) {
- if (!ar) ar = Array.prototype.slice.call(from, 0, i);
- ar[i] = from[i];
- }
- }
- return to.concat(ar || Array.prototype.slice.call(from));
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.FunctionList = void 0;
- var PrioritizedList_js_1 = require("./PrioritizedList.js");
- var FunctionList = (function (_super) {
- __extends(FunctionList, _super);
- function FunctionList() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- FunctionList.prototype.execute = function () {
- var e_1, _a;
- var data = [];
- for (var _i = 0; _i < arguments.length; _i++) {
- data[_i] = arguments[_i];
- }
- try {
- for (var _b = __values(this), _c = _b.next(); !_c.done; _c = _b.next()) {
- var item = _c.value;
- var result = item.item.apply(item, __spreadArray([], __read(data), false));
- if (result === false) {
- return false;
- }
- }
- }
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
- finally {
- try {
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
- }
- finally { if (e_1) throw e_1.error; }
- }
- return true;
- };
- FunctionList.prototype.asyncExecute = function () {
- var data = [];
- for (var _i = 0; _i < arguments.length; _i++) {
- data[_i] = arguments[_i];
- }
- var i = -1;
- var items = this.items;
- return new Promise(function (ok, fail) {
- (function execute() {
- var _a;
- while (++i < items.length) {
- var result = (_a = items[i]).item.apply(_a, __spreadArray([], __read(data), false));
- if (result instanceof Promise) {
- result.then(execute).catch(function (err) { return fail(err); });
- return;
- }
- if (result === false) {
- ok(false);
- return;
- }
- }
- ok(true);
- })();
- });
- };
- return FunctionList;
- }(PrioritizedList_js_1.PrioritizedList));
- exports.FunctionList = FunctionList;
- //# sourceMappingURL=FunctionList.js.map
|