aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js10
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js26
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js25
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js27
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js25
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js80
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js46
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js29
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js4
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js82
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map1
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js5
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map1
28 files changed, 388 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js
new file mode 100644
index 00000000..4ded474f
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js
@@ -0,0 +1,10 @@
+import { Subscription } from '../Subscription';
+export class Action extends Subscription {
+ constructor(scheduler, work) {
+ super();
+ }
+ schedule(state, delay = 0) {
+ return this;
+ }
+}
+//# sourceMappingURL=Action.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map
new file mode 100644
index 00000000..c5428520
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/Action.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"Action.js","sources":["../../../src/internal/scheduler/Action.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAiB/C,MAAM,OAAO,MAAU,SAAQ,YAAY;IACzC,YAAY,SAAoB,EAAE,IAAmD;QACnF,KAAK,EAAE,CAAC;IACV,CAAC;IAWM,QAAQ,CAAC,KAAS,EAAE,QAAgB,CAAC;QAC1C,OAAO,IAAI,CAAC;IACd,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js
new file mode 100644
index 00000000..e0b7ffa4
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js
@@ -0,0 +1,26 @@
+import { AsyncAction } from './AsyncAction';
+export class AnimationFrameAction extends AsyncAction {
+ constructor(scheduler, work) {
+ super(scheduler, work);
+ this.scheduler = scheduler;
+ this.work = work;
+ }
+ requestAsyncId(scheduler, id, delay = 0) {
+ if (delay !== null && delay > 0) {
+ return super.requestAsyncId(scheduler, id, delay);
+ }
+ scheduler.actions.push(this);
+ return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(() => scheduler.flush(null)));
+ }
+ recycleAsyncId(scheduler, id, delay = 0) {
+ if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
+ return super.recycleAsyncId(scheduler, id, delay);
+ }
+ if (scheduler.actions.length === 0) {
+ cancelAnimationFrame(id);
+ scheduler.scheduled = undefined;
+ }
+ return undefined;
+ }
+}
+//# sourceMappingURL=AnimationFrameAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map
new file mode 100644
index 00000000..c9dabf4a
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AnimationFrameAction.js","sources":["../../../src/internal/scheduler/AnimationFrameAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C,MAAM,OAAO,oBAAwB,SAAQ,WAAc;IAEzD,YAAsB,SAAkC,EAClC,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAyB;QAClC,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAES,cAAc,CAAC,SAAkC,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAEtF,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;YAC/B,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAI7B,OAAO,SAAS,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,SAAS,GAAG,qBAAqB,CACxE,GAAG,EAAE,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClC,CAAC;IACS,cAAc,CAAC,SAAkC,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAItF,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAID,IAAI,SAAS,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YAClC,oBAAoB,CAAC,EAAE,CAAC,CAAC;YACzB,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;SACjC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js
new file mode 100644
index 00000000..cb658cb4
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js
@@ -0,0 +1,25 @@
+import { AsyncScheduler } from './AsyncScheduler';
+export class AnimationFrameScheduler extends AsyncScheduler {
+ flush(action) {
+ this.active = true;
+ this.scheduled = undefined;
+ const { actions } = this;
+ let error;
+ let index = -1;
+ let 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;
+ }
+ }
+}
+//# sourceMappingURL=AnimationFrameScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map
new file mode 100644
index 00000000..88d43ada
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AnimationFrameScheduler.js","sources":["../../../src/internal/scheduler/AnimationFrameScheduler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,uBAAwB,SAAQ,cAAc;IAClD,KAAK,CAAC,MAAyB;QAEpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAE3B,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QACvB,IAAI,KAAU,CAAC;QACf,IAAI,KAAK,GAAW,CAAC,CAAC,CAAC;QACvB,IAAI,KAAK,GAAW,OAAO,CAAC,MAAM,CAAC;QACnC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QAEnC,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;QAExD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;gBACpD,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js
new file mode 100644
index 00000000..1d6a6776
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js
@@ -0,0 +1,27 @@
+import { Immediate } from '../util/Immediate';
+import { AsyncAction } from './AsyncAction';
+export class AsapAction extends AsyncAction {
+ constructor(scheduler, work) {
+ super(scheduler, work);
+ this.scheduler = scheduler;
+ this.work = work;
+ }
+ requestAsyncId(scheduler, id, delay = 0) {
+ if (delay !== null && delay > 0) {
+ return super.requestAsyncId(scheduler, id, delay);
+ }
+ scheduler.actions.push(this);
+ return scheduler.scheduled || (scheduler.scheduled = Immediate.setImmediate(scheduler.flush.bind(scheduler, null)));
+ }
+ recycleAsyncId(scheduler, id, delay = 0) {
+ if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
+ return super.recycleAsyncId(scheduler, id, delay);
+ }
+ if (scheduler.actions.length === 0) {
+ Immediate.clearImmediate(id);
+ scheduler.scheduled = undefined;
+ }
+ return undefined;
+ }
+}
+//# sourceMappingURL=AsapAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map
new file mode 100644
index 00000000..a74d5d7a
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AsapAction.js","sources":["../../../src/internal/scheduler/AsapAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAQ5C,MAAM,OAAO,UAAc,SAAQ,WAAc;IAE/C,YAAsB,SAAwB,EACxB,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAe;QACxB,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAES,cAAc,CAAC,SAAwB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAE5E,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,EAAE;YAC/B,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,SAAS,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAI7B,OAAO,SAAS,CAAC,SAAS,IAAI,CAAC,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC,YAAY,CACzE,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,CAAC,CACtC,CAAC,CAAC;IACL,CAAC;IACS,cAAc,CAAC,SAAwB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAI5E,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAID,IAAI,SAAS,CAAC,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;YAClC,SAAS,CAAC,cAAc,CAAC,EAAE,CAAC,CAAC;YAC7B,SAAS,CAAC,SAAS,GAAG,SAAS,CAAC;SACjC;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js
new file mode 100644
index 00000000..d4f637de
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js
@@ -0,0 +1,25 @@
+import { AsyncScheduler } from './AsyncScheduler';
+export class AsapScheduler extends AsyncScheduler {
+ flush(action) {
+ this.active = true;
+ this.scheduled = undefined;
+ const { actions } = this;
+ let error;
+ let index = -1;
+ let 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;
+ }
+ }
+}
+//# sourceMappingURL=AsapScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map
new file mode 100644
index 00000000..c8727d84
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AsapScheduler.js","sources":["../../../src/internal/scheduler/AsapScheduler.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,aAAc,SAAQ,cAAc;IACxC,KAAK,CAAC,MAAyB;QAEpC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAE3B,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QACvB,IAAI,KAAU,CAAC;QACf,IAAI,KAAK,GAAW,CAAC,CAAC,CAAC;QACvB,IAAI,KAAK,GAAW,OAAO,CAAC,MAAM,CAAC;QACnC,MAAM,GAAG,MAAM,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QAEnC,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;QAExD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,EAAE,KAAK,GAAG,KAAK,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,CAAC,EAAE;gBACpD,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js
new file mode 100644
index 00000000..66c29364
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js
@@ -0,0 +1,80 @@
+import { Action } from './Action';
+export class AsyncAction extends Action {
+ constructor(scheduler, work) {
+ super(scheduler, work);
+ this.scheduler = scheduler;
+ this.work = work;
+ this.pending = false;
+ }
+ schedule(state, delay = 0) {
+ if (this.closed) {
+ return this;
+ }
+ this.state = state;
+ const id = this.id;
+ const scheduler = this.scheduler;
+ if (id != null) {
+ this.id = this.recycleAsyncId(scheduler, id, delay);
+ }
+ this.pending = true;
+ this.delay = delay;
+ this.id = this.id || this.requestAsyncId(scheduler, this.id, delay);
+ return this;
+ }
+ requestAsyncId(scheduler, id, delay = 0) {
+ return setInterval(scheduler.flush.bind(scheduler, this), delay);
+ }
+ recycleAsyncId(scheduler, id, delay = 0) {
+ if (delay !== null && this.delay === delay && this.pending === false) {
+ return id;
+ }
+ clearInterval(id);
+ return undefined;
+ }
+ execute(state, delay) {
+ if (this.closed) {
+ return new Error('executing a cancelled action');
+ }
+ this.pending = false;
+ const error = this._execute(state, delay);
+ if (error) {
+ return error;
+ }
+ else if (this.pending === false && this.id != null) {
+ this.id = this.recycleAsyncId(this.scheduler, this.id, null);
+ }
+ }
+ _execute(state, delay) {
+ let errored = false;
+ let errorValue = undefined;
+ try {
+ this.work(state);
+ }
+ catch (e) {
+ errored = true;
+ errorValue = !!e && e || new Error(e);
+ }
+ if (errored) {
+ this.unsubscribe();
+ return errorValue;
+ }
+ }
+ _unsubscribe() {
+ const id = this.id;
+ const scheduler = this.scheduler;
+ const actions = scheduler.actions;
+ const index = actions.indexOf(this);
+ this.work = null;
+ this.state = null;
+ this.pending = false;
+ this.scheduler = null;
+ if (index !== -1) {
+ actions.splice(index, 1);
+ }
+ if (id != null) {
+ this.id = this.recycleAsyncId(scheduler, id, null);
+ }
+ this.delay = null;
+ }
+}
+//# sourceMappingURL=AsyncAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map
new file mode 100644
index 00000000..081998ee
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AsyncAction.js","sources":["../../../src/internal/scheduler/AsyncAction.ts"],"names":[],"mappings":"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"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js
new file mode 100644
index 00000000..828192fb
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js
@@ -0,0 +1,46 @@
+import { Scheduler } from '../Scheduler';
+export class AsyncScheduler extends Scheduler {
+ constructor(SchedulerAction, now = Scheduler.now) {
+ super(SchedulerAction, () => {
+ if (AsyncScheduler.delegate && AsyncScheduler.delegate !== this) {
+ return AsyncScheduler.delegate.now();
+ }
+ else {
+ return now();
+ }
+ });
+ this.actions = [];
+ this.active = false;
+ this.scheduled = undefined;
+ }
+ schedule(work, delay = 0, state) {
+ if (AsyncScheduler.delegate && AsyncScheduler.delegate !== this) {
+ return AsyncScheduler.delegate.schedule(work, delay, state);
+ }
+ else {
+ return super.schedule(work, delay, state);
+ }
+ }
+ flush(action) {
+ const { actions } = this;
+ if (this.active) {
+ actions.push(action);
+ return;
+ }
+ let error;
+ this.active = true;
+ do {
+ if (error = action.execute(action.state, action.delay)) {
+ break;
+ }
+ } while (action = actions.shift());
+ this.active = false;
+ if (error) {
+ while (action = actions.shift()) {
+ action.unsubscribe();
+ }
+ throw error;
+ }
+ }
+}
+//# sourceMappingURL=AsyncScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map
new file mode 100644
index 00000000..2fd6cd54
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"AsyncScheduler.js","sources":["../../../src/internal/scheduler/AsyncScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAMzC,MAAM,OAAO,cAAe,SAAQ,SAAS;IAmB3C,YAAY,eAA8B,EAC9B,MAAoB,SAAS,CAAC,GAAG;QAC3C,KAAK,CAAC,eAAe,EAAE,GAAG,EAAE;YAC1B,IAAI,cAAc,CAAC,QAAQ,IAAI,cAAc,CAAC,QAAQ,KAAK,IAAI,EAAE;gBAC/D,OAAO,cAAc,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;aACtC;iBAAM;gBACL,OAAO,GAAG,EAAE,CAAC;aACd;QACH,CAAC,CAAC,CAAC;QAzBE,YAAO,GAA4B,EAAE,CAAC;QAOtC,WAAM,GAAY,KAAK,CAAC;QAQxB,cAAS,GAAQ,SAAS,CAAC;IAWlC,CAAC;IAEM,QAAQ,CAAI,IAAmD,EAAE,QAAgB,CAAC,EAAE,KAAS;QAClG,IAAI,cAAc,CAAC,QAAQ,IAAI,cAAc,CAAC,QAAQ,KAAK,IAAI,EAAE;YAC/D,OAAO,cAAc,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;SAC7D;aAAM;YACL,OAAO,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,KAAK,CAAC,CAAC;SAC3C;IACH,CAAC;IAEM,KAAK,CAAC,MAAwB;QAEnC,MAAM,EAAC,OAAO,EAAC,GAAG,IAAI,CAAC;QAEvB,IAAI,IAAI,CAAC,MAAM,EAAE;YACf,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YACrB,OAAO;SACR;QAED,IAAI,KAAU,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAEnB,GAAG;YACD,IAAI,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE;gBACtD,MAAM;aACP;SACF,QAAQ,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,EAAE;QAEnC,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;QAEpB,IAAI,KAAK,EAAE;YACT,OAAO,MAAM,GAAG,OAAO,CAAC,KAAK,EAAE,EAAE;gBAC/B,MAAM,CAAC,WAAW,EAAE,CAAC;aACtB;YACD,MAAM,KAAK,CAAC;SACb;IACH,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js
new file mode 100644
index 00000000..3b3177a3
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js
@@ -0,0 +1,29 @@
+import { AsyncAction } from './AsyncAction';
+export class QueueAction extends AsyncAction {
+ constructor(scheduler, work) {
+ super(scheduler, work);
+ this.scheduler = scheduler;
+ this.work = work;
+ }
+ schedule(state, delay = 0) {
+ if (delay > 0) {
+ return super.schedule(state, delay);
+ }
+ this.delay = delay;
+ this.state = state;
+ this.scheduler.flush(this);
+ return this;
+ }
+ execute(state, delay) {
+ return (delay > 0 || this.closed) ?
+ super.execute(state, delay) :
+ this._execute(state, delay);
+ }
+ requestAsyncId(scheduler, id, delay = 0) {
+ if ((delay !== null && delay > 0) || (delay === null && this.delay > 0)) {
+ return super.requestAsyncId(scheduler, id, delay);
+ }
+ return scheduler.flush(this);
+ }
+}
+//# sourceMappingURL=QueueAction.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map
new file mode 100644
index 00000000..af07a1e9
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"QueueAction.js","sources":["../../../src/internal/scheduler/QueueAction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAU5C,MAAM,OAAO,WAAe,SAAQ,WAAc;IAEhD,YAAsB,SAAyB,EACzB,IAAmD;QACvE,KAAK,CAAC,SAAS,EAAE,IAAI,CAAC,CAAC;QAFH,cAAS,GAAT,SAAS,CAAgB;QACzB,SAAI,GAAJ,IAAI,CAA+C;IAEzE,CAAC;IAEM,QAAQ,CAAC,KAAS,EAAE,QAAgB,CAAC;QAC1C,IAAI,KAAK,GAAG,CAAC,EAAE;YACb,OAAO,KAAK,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;SACrC;QACD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;IAEM,OAAO,CAAC,KAAQ,EAAE,KAAa;QACpC,OAAO,CAAC,KAAK,GAAG,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC;YACjC,KAAK,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,CAAC;YAC7B,IAAI,CAAC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC,CAAE;IACjC,CAAC;IAES,cAAc,CAAC,SAAyB,EAAE,EAAQ,EAAE,QAAgB,CAAC;QAI7E,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,IAAI,IAAI,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,EAAE;YACvE,OAAO,KAAK,CAAC,cAAc,CAAC,SAAS,EAAE,EAAE,EAAE,KAAK,CAAC,CAAC;SACnD;QAED,OAAO,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;IAC/B,CAAC;CACF"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js
new file mode 100644
index 00000000..cc1fb4d5
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js
@@ -0,0 +1,4 @@
+import { AsyncScheduler } from './AsyncScheduler';
+export class QueueScheduler extends AsyncScheduler {
+}
+//# sourceMappingURL=QueueScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map
new file mode 100644
index 00000000..c32c0b1f
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"QueueScheduler.js","sources":["../../../src/internal/scheduler/QueueScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAElD,MAAM,OAAO,cAAe,SAAQ,cAAc;CACjD"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js
new file mode 100644
index 00000000..ebce6dbd
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js
@@ -0,0 +1,82 @@
+import { AsyncAction } from './AsyncAction';
+import { AsyncScheduler } from './AsyncScheduler';
+export class VirtualTimeScheduler extends AsyncScheduler {
+ constructor(SchedulerAction = VirtualAction, maxFrames = Number.POSITIVE_INFINITY) {
+ super(SchedulerAction, () => this.frame);
+ this.maxFrames = maxFrames;
+ this.frame = 0;
+ this.index = -1;
+ }
+ flush() {
+ const { actions, maxFrames } = this;
+ let error, action;
+ while ((action = actions[0]) && action.delay <= maxFrames) {
+ actions.shift();
+ this.frame = action.delay;
+ if (error = action.execute(action.state, action.delay)) {
+ break;
+ }
+ }
+ if (error) {
+ while (action = actions.shift()) {
+ action.unsubscribe();
+ }
+ throw error;
+ }
+ }
+}
+VirtualTimeScheduler.frameTimeFactor = 10;
+export class VirtualAction extends AsyncAction {
+ constructor(scheduler, work, index = scheduler.index += 1) {
+ super(scheduler, work);
+ this.scheduler = scheduler;
+ this.work = work;
+ this.index = index;
+ this.active = true;
+ this.index = scheduler.index = index;
+ }
+ schedule(state, delay = 0) {
+ if (!this.id) {
+ return super.schedule(state, delay);
+ }
+ this.active = false;
+ const action = new VirtualAction(this.scheduler, this.work);
+ this.add(action);
+ return action.schedule(state, delay);
+ }
+ requestAsyncId(scheduler, id, delay = 0) {
+ this.delay = scheduler.frame + delay;
+ const { actions } = scheduler;
+ actions.push(this);
+ actions.sort(VirtualAction.sortActions);
+ return true;
+ }
+ recycleAsyncId(scheduler, id, delay = 0) {
+ return undefined;
+ }
+ _execute(state, delay) {
+ if (this.active === true) {
+ return super._execute(state, delay);
+ }
+ }
+ static sortActions(a, b) {
+ if (a.delay === b.delay) {
+ if (a.index === b.index) {
+ return 0;
+ }
+ else if (a.index > b.index) {
+ return 1;
+ }
+ else {
+ return -1;
+ }
+ }
+ else if (a.delay > b.delay) {
+ return 1;
+ }
+ else {
+ return -1;
+ }
+ }
+}
+//# sourceMappingURL=VirtualTimeScheduler.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map
new file mode 100644
index 00000000..9b56e6ec
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/VirtualTimeScheduler.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"VirtualTimeScheduler.js","sources":["../../../src/internal/scheduler/VirtualTimeScheduler.ts"],"names":[],"mappings":"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"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js
new file mode 100644
index 00000000..6575d95b
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js
@@ -0,0 +1,5 @@
+import { AnimationFrameAction } from './AnimationFrameAction';
+import { AnimationFrameScheduler } from './AnimationFrameScheduler';
+export const animationFrameScheduler = new AnimationFrameScheduler(AnimationFrameAction);
+export const animationFrame = animationFrameScheduler;
+//# sourceMappingURL=animationFrame.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map
new file mode 100644
index 00000000..f505e818
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"animationFrame.js","sources":["../../../src/internal/scheduler/animationFrame.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAiCpE,MAAM,CAAC,MAAM,uBAAuB,GAAG,IAAI,uBAAuB,CAAC,oBAAoB,CAAC,CAAC;AAKzF,MAAM,CAAC,MAAM,cAAc,GAAG,uBAAuB,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js
new file mode 100644
index 00000000..29ae3a84
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js
@@ -0,0 +1,5 @@
+import { AsapAction } from './AsapAction';
+import { AsapScheduler } from './AsapScheduler';
+export const asapScheduler = new AsapScheduler(AsapAction);
+export const asap = asapScheduler;
+//# sourceMappingURL=asap.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map
new file mode 100644
index 00000000..27cd494b
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/asap.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"asap.js","sources":["../../../src/internal/scheduler/asap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAoChD,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,aAAa,CAAC,UAAU,CAAC,CAAC;AAK3D,MAAM,CAAC,MAAM,IAAI,GAAG,aAAa,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js
new file mode 100644
index 00000000..8d0283e1
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js
@@ -0,0 +1,5 @@
+import { AsyncAction } from './AsyncAction';
+import { AsyncScheduler } from './AsyncScheduler';
+export const asyncScheduler = new AsyncScheduler(AsyncAction);
+export const async = asyncScheduler;
+//# sourceMappingURL=async.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map
new file mode 100644
index 00000000..6aadfea7
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/async.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"async.js","sources":["../../../src/internal/scheduler/async.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgDlD,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,WAAW,CAAC,CAAC;AAK9D,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc,CAAC"}
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js
new file mode 100644
index 00000000..cb4f218d
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js
@@ -0,0 +1,5 @@
+import { QueueAction } from './QueueAction';
+import { QueueScheduler } from './QueueScheduler';
+export const queueScheduler = new QueueScheduler(QueueAction);
+export const queue = queueScheduler;
+//# sourceMappingURL=queue.js.map \ No newline at end of file
diff --git a/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map
new file mode 100644
index 00000000..3e279bb9
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/rxjs/_esm2015/internal/scheduler/queue.js.map
@@ -0,0 +1 @@
+{"version":3,"file":"queue.js","sources":["../../../src/internal/scheduler/queue.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgElD,MAAM,CAAC,MAAM,cAAc,GAAG,IAAI,cAAc,CAAC,WAAW,CAAC,CAAC;AAK9D,MAAM,CAAC,MAAM,KAAK,GAAG,cAAc,CAAC"}