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/package.json
CHANGED
package/web.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);
|
|
@@ -706,7 +706,7 @@ var $;
|
|
|
706
706
|
return $mol_promise_like(this.cache);
|
|
707
707
|
}
|
|
708
708
|
field() {
|
|
709
|
-
return this.task.name + '
|
|
709
|
+
return this.task.name + '<>';
|
|
710
710
|
}
|
|
711
711
|
constructor(id, task, host, args) {
|
|
712
712
|
super();
|
|
@@ -1145,7 +1145,7 @@ var $;
|
|
|
1145
1145
|
break reuse;
|
|
1146
1146
|
return existen;
|
|
1147
1147
|
}
|
|
1148
|
-
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}
|
|
1148
|
+
const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}<#>`, task, host, args);
|
|
1149
1149
|
if (existen?.temp) {
|
|
1150
1150
|
$$.$mol_log3_warn({
|
|
1151
1151
|
place: '$mol_wire_task',
|
|
@@ -1257,7 +1257,7 @@ var $;
|
|
|
1257
1257
|
(function ($) {
|
|
1258
1258
|
class $mol_wire_atom extends $mol_wire_fiber {
|
|
1259
1259
|
static solo(host, task) {
|
|
1260
|
-
const field = task.name + '
|
|
1260
|
+
const field = task.name + '<>';
|
|
1261
1261
|
const existen = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
|
|
1262
1262
|
if (existen)
|
|
1263
1263
|
return existen;
|
|
@@ -1268,7 +1268,7 @@ var $;
|
|
|
1268
1268
|
return fiber;
|
|
1269
1269
|
}
|
|
1270
1270
|
static plex(host, task, key) {
|
|
1271
|
-
const field = task.name + '
|
|
1271
|
+
const field = task.name + '<>';
|
|
1272
1272
|
let dict = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
|
|
1273
1273
|
const prefix = host?.[Symbol.toStringTag] ?? (host instanceof Function ? $$.$mol_func_name(host) : host);
|
|
1274
1274
|
const key_str = $mol_key(key);
|
|
@@ -1280,7 +1280,7 @@ var $;
|
|
|
1280
1280
|
else {
|
|
1281
1281
|
dict = (host ?? task)[field] = new Map();
|
|
1282
1282
|
}
|
|
1283
|
-
const id = `${prefix}.${task.name}
|
|
1283
|
+
const id = `${prefix}.${task.name}<${key_str.replace(/^"|"$/g, "'")}>`;
|
|
1284
1284
|
const fiber = new $mol_wire_atom(id, task, host, [key]);
|
|
1285
1285
|
dict.set(key_str, fiber);
|
|
1286
1286
|
return fiber;
|