mol_plot_all 1.2.1329 → 1.2.1330
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.deps.json +1 -1
- package/node.js +10 -1
- package/node.js.map +1 -1
- package/node.mjs +10 -1
- package/node.test.js +10 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
- package/web.js +10 -1
- package/web.js.map +1 -1
- package/web.mjs +10 -1
package/node.js
CHANGED
|
@@ -877,9 +877,18 @@ var $;
|
|
|
877
877
|
}
|
|
878
878
|
destructor() {
|
|
879
879
|
super.destructor();
|
|
880
|
-
if (
|
|
880
|
+
if (!$mol_owning_check(this, this.cache))
|
|
881
|
+
return;
|
|
882
|
+
try {
|
|
881
883
|
this.cache.destructor();
|
|
882
884
|
}
|
|
885
|
+
catch (result) {
|
|
886
|
+
if ($mol_promise_like(result)) {
|
|
887
|
+
const error = new Error(`Promise in ${this}.destructor()`);
|
|
888
|
+
Object.defineProperty(result, 'stack', { get: () => error.stack });
|
|
889
|
+
}
|
|
890
|
+
$mol_fail_hidden(result);
|
|
891
|
+
}
|
|
883
892
|
}
|
|
884
893
|
}
|
|
885
894
|
$.$mol_wire_fiber = $mol_wire_fiber;
|