mol_wire_lib 1.0.110 → 1.0.113

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
@@ -881,7 +881,7 @@ var $;
881
881
  (function ($) {
882
882
  class $mol_wire_task extends $mol_wire_fiber {
883
883
  static getter(task) {
884
- return function $mol_wire_fiber_temp_get(host, args) {
884
+ return function $mol_wire_task_get(host, args) {
885
885
  const existen = $mol_wire_auto()?.track_next();
886
886
  reuse: if (existen) {
887
887
  if (!(existen instanceof $mol_wire_task))
@@ -1006,7 +1006,7 @@ var $;
1006
1006
  static getter(task, keys) {
1007
1007
  const field = task.name + '()';
1008
1008
  if (keys) {
1009
- return function $mol_wire_fiber_persist_get(host, args) {
1009
+ return function $mol_wire_atom_get(host, args) {
1010
1010
  let dict, key, fiber;
1011
1011
  key = `${host?.[Symbol.toStringTag] ?? host}.${task.name}(${args.map(v => $mol_key(v)).join(',')})`;
1012
1012
  dict = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
@@ -1024,7 +1024,7 @@ var $;
1024
1024
  };
1025
1025
  }
1026
1026
  else {
1027
- return function $mol_wire_fiber_persist_get(host, args) {
1027
+ return function $mol_wire_atom_get(host, args) {
1028
1028
  const existen = Object.getOwnPropertyDescriptor(host ?? task, field)?.value;
1029
1029
  if (existen)
1030
1030
  return existen;