mol_plot_all 1.2.1168 → 1.2.1169

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 CHANGED
@@ -1154,7 +1154,7 @@ var $;
1154
1154
  this.row = row;
1155
1155
  this.col = col;
1156
1156
  this.length = length;
1157
- this[Symbol.toStringTag] = `${this.uri}#${this.row}:${this.col}/${this.length}`;
1157
+ this[Symbol.toStringTag] = this.uri + ('#' + this.row + ':' + this.col + '/' + this.length);
1158
1158
  }
1159
1159
  static unknown = $mol_span.begin('?');
1160
1160
  static begin(uri, source = '') {
@@ -1650,7 +1650,8 @@ var $;
1650
1650
  break reuse;
1651
1651
  return existen;
1652
1652
  }
1653
- const next = new $mol_wire_task(`${host?.[Symbol.toStringTag] ?? host}.${task.name}<#>`, task, host, args);
1653
+ const key = (host?.[Symbol.toStringTag] ?? host) + ('.' + task.name + '<#>');
1654
+ const next = new $mol_wire_task(key, task, host, args);
1654
1655
  if (existen?.temp) {
1655
1656
  $$.$mol_log3_warn({
1656
1657
  place: '$mol_wire_task',
@@ -1767,7 +1768,7 @@ var $;
1767
1768
  if (existen)
1768
1769
  return existen;
1769
1770
  const prefix = host?.[Symbol.toStringTag] ?? (host instanceof Function ? $$.$mol_func_name(host) : host);
1770
- const key = `${prefix}.${field}`;
1771
+ const key = prefix + ('.' + field);
1771
1772
  const fiber = new $mol_wire_atom(key, task, host, []);
1772
1773
  (host ?? task)[field] = fiber;
1773
1774
  return fiber;
@@ -1785,7 +1786,7 @@ var $;
1785
1786
  else {
1786
1787
  dict = (host ?? task)[field] = new Map();
1787
1788
  }
1788
- const id = `${prefix}.${task.name}<${key_str.replace(/^"|"$/g, "'")}>`;
1789
+ const id = prefix + ('.' + task.name) + ('<' + key_str.replace(/^"|"$/g, "'") + '>');
1789
1790
  const fiber = new $mol_wire_atom(id, task, host, [key]);
1790
1791
  dict.set(key_str, fiber);
1791
1792
  return fiber;