Skip to content

Commit

Permalink
Deploying to gh-pages from @ b352636 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Jun 11, 2024
1 parent 1b6b5bb commit 08cf68a
Show file tree
Hide file tree
Showing 17 changed files with 707 additions and 707 deletions.
512 changes: 256 additions & 256 deletions node.d.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.d.ts.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion node.deps.json

Large diffs are not rendered by default.

66 changes: 33 additions & 33 deletions node.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node.js.map

Large diffs are not rendered by default.

66 changes: 33 additions & 33 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -613,24 +613,21 @@ var $;
"use strict";
var $;
(function ($) {
class $mol_after_tick extends $mol_object2 {
class $mol_after_timeout extends $mol_object2 {
delay;
task;
promise;
cancelled = false;
constructor(task) {
id;
constructor(delay, task) {
super();
this.delay = delay;
this.task = task;
this.promise = Promise.resolve().then(() => {
if (this.cancelled)
return;
task();
});
this.id = setTimeout(task, delay);
}
destructor() {
this.cancelled = true;
clearTimeout(this.id);
}
}
$.$mol_after_tick = $mol_after_tick;
$.$mol_after_timeout = $mol_after_timeout;
})($ || ($ = {}));

;
Expand Down Expand Up @@ -658,7 +655,7 @@ var $;
static plan() {
if (this.plan_task)
return;
this.plan_task = new $mol_after_tick(() => {
this.plan_task = new $mol_after_timeout(0, () => {
try {
this.sync();
}
Expand Down Expand Up @@ -932,27 +929,6 @@ var $;
$.$mol_key = $mol_key;
})($ || ($ = {}));

;
"use strict";
var $;
(function ($) {
class $mol_after_timeout extends $mol_object2 {
delay;
task;
id;
constructor(delay, task) {
super();
this.delay = delay;
this.task = task;
this.id = setTimeout(task, delay);
}
destructor() {
clearTimeout(this.id);
}
}
$.$mol_after_timeout = $mol_after_timeout;
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down Expand Up @@ -2080,6 +2056,30 @@ var $;
$.$mol_dom_context = new $node.jsdom.JSDOM('', { url: 'https://localhost/' }).window;
})($ || ($ = {}));

;
"use strict";
var $;
(function ($) {
class $mol_after_tick extends $mol_object2 {
task;
promise;
cancelled = false;
constructor(task) {
super();
this.task = task;
this.promise = Promise.resolve().then(() => {
if (this.cancelled)
return;
task();
});
}
destructor() {
this.cancelled = true;
}
}
$.$mol_after_tick = $mol_after_tick;
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down
86 changes: 43 additions & 43 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,24 +604,21 @@ var $;
"use strict";
var $;
(function ($) {
class $mol_after_tick extends $mol_object2 {
class $mol_after_timeout extends $mol_object2 {
delay;
task;
promise;
cancelled = false;
constructor(task) {
id;
constructor(delay, task) {
super();
this.delay = delay;
this.task = task;
this.promise = Promise.resolve().then(() => {
if (this.cancelled)
return;
task();
});
this.id = setTimeout(task, delay);
}
destructor() {
this.cancelled = true;
clearTimeout(this.id);
}
}
$.$mol_after_tick = $mol_after_tick;
$.$mol_after_timeout = $mol_after_timeout;
})($ || ($ = {}));

;
Expand Down Expand Up @@ -649,7 +646,7 @@ var $;
static plan() {
if (this.plan_task)
return;
this.plan_task = new $mol_after_tick(() => {
this.plan_task = new $mol_after_timeout(0, () => {
try {
this.sync();
}
Expand Down Expand Up @@ -923,27 +920,6 @@ var $;
$.$mol_key = $mol_key;
})($ || ($ = {}));

;
"use strict";
var $;
(function ($) {
class $mol_after_timeout extends $mol_object2 {
delay;
task;
id;
constructor(delay, task) {
super();
this.delay = delay;
this.task = task;
this.id = setTimeout(task, delay);
}
destructor() {
clearTimeout(this.id);
}
}
$.$mol_after_timeout = $mol_after_timeout;
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down Expand Up @@ -2071,6 +2047,30 @@ var $;
$.$mol_dom_context = new $node.jsdom.JSDOM('', { url: 'https://localhost/' }).window;
})($ || ($ = {}));

;
"use strict";
var $;
(function ($) {
class $mol_after_tick extends $mol_object2 {
task;
promise;
cancelled = false;
constructor(task) {
super();
this.task = task;
this.promise = Promise.resolve().then(() => {
if (this.cancelled)
return;
task();
});
}
destructor() {
this.cancelled = true;
}
}
$.$mol_after_tick = $mol_after_tick;
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down Expand Up @@ -13219,7 +13219,7 @@ var $;
var $;
(function ($_1) {
$mol_test_mocks.push($ => {
$.$mol_after_tick = $mol_after_mock_commmon;
$.$mol_after_timeout = $mol_after_mock_timeout;
});
})($ || ($ = {}));

Expand Down Expand Up @@ -13308,15 +13308,6 @@ var $;
;
"use strict";

;
"use strict";
var $;
(function ($_1) {
$mol_test_mocks.push($ => {
$.$mol_after_timeout = $mol_after_mock_timeout;
});
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down Expand Up @@ -14002,6 +13993,15 @@ var $;
});
})($ || ($ = {}));

;
"use strict";
var $;
(function ($_1) {
$mol_test_mocks.push($ => {
$.$mol_after_tick = $mol_after_mock_commmon;
});
})($ || ($ = {}));

;
"use strict";
var $;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,13 @@
"$mol_wire_pub_sub",
"$mol_dev_format",
"$mol_dev",
"$mol_after_tick",
"$mol_after_timeout",
"$mol_after",
"$mol_promise_like",
"$mol_promise",
"$mol_key",
"$mol_guid",
"$mol_after_frame",
"$mol_after_timeout",
"$mol_wire_method",
"$mol_wire_task",
"$mol_compare_deep",
Expand Down Expand Up @@ -83,6 +82,7 @@
"$mol_exec",
"$mol_env",
"$mol_view_selection",
"$mol_after_tick",
"$mol_memo",
"$mol_wrapper",
"$mol_dom_qname",
Expand Down
Loading

0 comments on commit 08cf68a

Please sign in to comment.