some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm5 / internal / scheduler / AsapScheduler.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/_esm5/internal/scheduler/AsapScheduler.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/rxjs/_esm5/internal/scheduler/AsapScheduler.js
deleted file mode 100644 (file)
index f13565c..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/** PURE_IMPORTS_START tslib,_AsyncScheduler PURE_IMPORTS_END */
-import * as tslib_1 from "tslib";
-import { AsyncScheduler } from './AsyncScheduler';
-var AsapScheduler = /*@__PURE__*/ (function (_super) {
-    tslib_1.__extends(AsapScheduler, _super);
-    function AsapScheduler() {
-        return _super !== null && _super.apply(this, arguments) || this;
-    }
-    AsapScheduler.prototype.flush = function (action) {
-        this.active = true;
-        this.scheduled = undefined;
-        var actions = this.actions;
-        var error;
-        var index = -1;
-        var count = actions.length;
-        action = action || actions.shift();
-        do {
-            if (error = action.execute(action.state, action.delay)) {
-                break;
-            }
-        } while (++index < count && (action = actions.shift()));
-        this.active = false;
-        if (error) {
-            while (++index < count && (action = actions.shift())) {
-                action.unsubscribe();
-            }
-            throw error;
-        }
-    };
-    return AsapScheduler;
-}(AsyncScheduler));
-export { AsapScheduler };
-//# sourceMappingURL=AsapScheduler.js.map