mol_plot_all 1.2.867 → 1.2.868
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.js +6 -6
- package/node.js.map +1 -1
- package/node.mjs +6 -6
- package/node.test.js +15 -11
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.js +6 -6
- package/web.js.map +1 -1
- package/web.mjs +6 -6
- package/web.test.js +9 -5
- package/web.test.js.map +1 -1
package/node.js
CHANGED
|
@@ -222,7 +222,7 @@ var $;
|
|
|
222
222
|
destructor() { }
|
|
223
223
|
static destructor() { }
|
|
224
224
|
toString() {
|
|
225
|
-
return this[Symbol.toStringTag] || this.constructor.name + '
|
|
225
|
+
return this[Symbol.toStringTag] || this.constructor.name + '<>';
|
|
226
226
|
}
|
|
227
227
|
static toJSON() {
|
|
228
228
|
return this[Symbol.toStringTag] || this.$.$mol_func_name(this);
|
|
@@ -715,7 +715,7 @@ var $;
|
|
|
715
715
|
return $mol_promise_like(this.cache);
|
|
716
716
|
}
|
|
717
717
|
field() {
|
|
718
|
-
return this.task.name + '
|
|
718
|
+
return this.task.name + '<>';
|
|
719
719
|
}
|
|
720
720
|
constructor(id, task, host, args) {
|
|
721
721
|
super();
|
|
@@ -1611,7 +1611,7 @@ var $;
|
|
|
1611
1611
|
break reuse;
|
|
1612
1612
|
return existen;
|
|
1613
1613
|
}
|
|
1614
|
-
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}
|
|
1614
|
+
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}<#>`, task, host, args);
|
|
1615
1615
|
if (existen?.temp) {
|
|
1616
1616
|
$$.$mol_log3_warn({
|
|
1617
1617
|
place: '$mol_wire_task',
|
|
@@ -1723,7 +1723,7 @@ var $;
|
|
|
1723
1723
|
(function ($) {
|
|
1724
1724
|
class $mol_wire_atom extends $mol_wire_fiber {
|
|
1725
1725
|
static solo(host, task) {
|
|
1726
|
-
const field = task.name + '
|
|
1726
|
+
const field = task.name + '<>';
|
|
1727
1727
|
const existen = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
|
|
1728
1728
|
if (existen)
|
|
1729
1729
|
return existen;
|
|
@@ -1734,7 +1734,7 @@ var $;
|
|
|
1734
1734
|
return fiber;
|
|
1735
1735
|
}
|
|
1736
1736
|
static plex(host, task, key) {
|
|
1737
|
-
const field = task.name + '
|
|
1737
|
+
const field = task.name + '<>';
|
|
1738
1738
|
let dict = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
|
|
1739
1739
|
const prefix = host?.[Symbol.toStringTag] ?? (host instanceof Function ? $$.$mol_func_name(host) : host);
|
|
1740
1740
|
const key_str = $mol_key(key);
|
|
@@ -1746,7 +1746,7 @@ var $;
|
|
|
1746
1746
|
else {
|
|
1747
1747
|
dict = (host ?? task)[field] = new Map();
|
|
1748
1748
|
}
|
|
1749
|
-
const id = `${prefix}.${task.name}
|
|
1749
|
+
const id = `${prefix}.${task.name}<${key_str.replace(/^"|"$/g, "'")}>`;
|
|
1750
1750
|
const fiber = new $mol_wire_atom(id, task, host, [key]);
|
|
1751
1751
|
dict.set(key_str, fiber);
|
|
1752
1752
|
return fiber;
|