mol_plot_all 1.2.1328 → 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/web.js
CHANGED
|
@@ -862,9 +862,18 @@ var $;
|
|
|
862
862
|
}
|
|
863
863
|
destructor() {
|
|
864
864
|
super.destructor();
|
|
865
|
-
if (
|
|
865
|
+
if (!$mol_owning_check(this, this.cache))
|
|
866
|
+
return;
|
|
867
|
+
try {
|
|
866
868
|
this.cache.destructor();
|
|
867
869
|
}
|
|
870
|
+
catch (result) {
|
|
871
|
+
if ($mol_promise_like(result)) {
|
|
872
|
+
const error = new Error(`Promise in ${this}.destructor()`);
|
|
873
|
+
Object.defineProperty(result, 'stack', { get: () => error.stack });
|
|
874
|
+
}
|
|
875
|
+
$mol_fail_hidden(result);
|
|
876
|
+
}
|
|
868
877
|
}
|
|
869
878
|
}
|
|
870
879
|
$.$mol_wire_fiber = $mol_wire_fiber;
|