Skip to content

Commit

Permalink
Deploying to gh-pages from @ 40f8e82 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
nin-jin committed Oct 3, 2024
1 parent b9ba443 commit b7e2ffe
Show file tree
Hide file tree
Showing 12 changed files with 582 additions and 577 deletions.
554 changes: 277 additions & 277 deletions node.d.ts

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

9 changes: 5 additions & 4 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.

9 changes: 5 additions & 4 deletions node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ var $;
this.row = row;
this.col = col;
this.length = length;
this[Symbol.toStringTag] = `${this.uri}#${this.row}:${this.col}/${this.length}`;
this[Symbol.toStringTag] = this.uri + ('#' + this.row + ':' + this.col + '/' + this.length);
}
static unknown = $mol_span.begin('?');
static begin(uri, source = '') {
Expand Down Expand Up @@ -1653,7 +1653,8 @@ var $;
break reuse;
return existen;
}
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}<#>`, task, host, args);
const key = (host?.[Symbol.toStringTag] ?? host) + ('.' + task.name + '<#>');
const next = new $mol_wire_task(key, task, host, args);
if (existen?.temp) {
$$.$mol_log3_warn({
place: '$mol_wire_task',
Expand Down Expand Up @@ -1770,7 +1771,7 @@ var $;
if (existen)
return existen;
const prefix = host?.[Symbol.toStringTag] ?? (host instanceof Function ? $$.$mol_func_name(host) : host);
const key = `${prefix}.${field}`;
const key = prefix + ('.' + field);
const fiber = new $mol_wire_atom(key, task, host, []);
(host ?? task)[field] = fiber;
return fiber;
Expand All @@ -1788,7 +1789,7 @@ var $;
else {
dict = (host ?? task)[field] = new Map();
}
const id = `${prefix}.${task.name}<${key_str.replace(/^"|"$/g, "'")}>`;
const id = prefix + ('.' + task.name) + ('<' + key_str.replace(/^"|"$/g, "'") + '>');
const fiber = new $mol_wire_atom(id, task, host, [key]);
dict.set(key_str, fiber);
return fiber;
Expand Down
9 changes: 5 additions & 4 deletions node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ var $;
this.row = row;
this.col = col;
this.length = length;
this[Symbol.toStringTag] = `${this.uri}#${this.row}:${this.col}/${this.length}`;
this[Symbol.toStringTag] = this.uri + ('#' + this.row + ':' + this.col + '/' + this.length);
}
static unknown = $mol_span.begin('?');
static begin(uri, source = '') {
Expand Down Expand Up @@ -1644,7 +1644,8 @@ var $;
break reuse;
return existen;
}
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}<#>`, task, host, args);
const key = (host?.[Symbol.toStringTag] ?? host) + ('.' + task.name + '<#>');
const next = new $mol_wire_task(key, task, host, args);
if (existen?.temp) {
$$.$mol_log3_warn({
place: '$mol_wire_task',
Expand Down Expand Up @@ -1761,7 +1762,7 @@ var $;
if (existen)
return existen;
const prefix = host?.[Symbol.toStringTag] ?? (host instanceof Function ? $$.$mol_func_name(host) : host);
const key = `${prefix}.${field}`;
const key = prefix + ('.' + field);
const fiber = new $mol_wire_atom(key, task, host, []);
(host ?? task)[field] = fiber;
return fiber;
Expand All @@ -1779,7 +1780,7 @@ var $;
else {
dict = (host ?? task)[field] = new Map();
}
const id = `${prefix}.${task.name}<${key_str.replace(/^"|"$/g, "'")}>`;
const id = prefix + ('.' + task.name) + ('<' + key_str.replace(/^"|"$/g, "'") + '>');
const fiber = new $mol_wire_atom(id, task, host, [key]);
dict.set(key_str, fiber);
return fiber;
Expand Down
2 changes: 1 addition & 1 deletion node.test.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit b7e2ffe

Please sign in to comment.