@agoric/swingset-liveslots 0.10.3-dev-7cc5def.0 → 0.10.3-dev-3ce0599.0
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/package.json +8 -5
- package/src/liveslots.js +2 -1
- package/test/storeGC/test-lifecycle.js +0 -1
- package/test/storeGC/test-refcount-management.js +0 -1
- package/test/storeGC/test-scalar-store-kind.js +0 -1
- package/test/storeGC/test-weak-key.js +0 -1
- package/test/test-baggage.js +0 -1
- package/test/test-cache.js +0 -1
- package/test/test-collection-schema-refcount.js +0 -1
- package/test/test-collection-upgrade.js +0 -1
- package/test/test-collections.js +0 -1
- package/test/test-dropped-collection-weakrefs.js +0 -1
- package/test/test-durabilityChecks.js +0 -1
- package/test/test-facetiousness.js +0 -1
- package/test/test-gc-sensitivity.js +0 -1
- package/test/test-handled-promises.js +0 -1
- package/test/test-initial-vrefs.js +0 -1
- package/test/test-liveslots-mock-gc.js +0 -1
- package/test/test-liveslots-real-gc.js +0 -1
- package/test/test-liveslots.js +0 -1
- package/test/test-vo-test-harness.js +0 -1
- package/test/test-vpid-liveslots.js +0 -1
- package/test/virtual-objects/test-cease-recognition.js +0 -1
- package/test/virtual-objects/test-cross-facet.js +0 -1
- package/test/virtual-objects/test-empty-data.js +0 -1
- package/test/virtual-objects/test-facets.js +0 -1
- package/test/virtual-objects/test-kind-changes.js +0 -1
- package/test/virtual-objects/test-reachable-vrefs.js +0 -1
- package/test/virtual-objects/test-rep-tostring.js +0 -1
- package/test/virtual-objects/test-retain-remotable.js +0 -1
- package/test/virtual-objects/test-state-shape.js +0 -1
- package/test/virtual-objects/test-virtualObjectGC.js +0 -1
- package/test/virtual-objects/test-virtualObjectManager.js +0 -1
- package/test/virtual-objects/test-vo-real-gc.js +0 -1
- package/test/virtual-objects/test-weakcollections-vref-handling.js +0 -1
- package/tools/prepare-test-env.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/swingset-liveslots",
|
|
3
|
-
"version": "0.10.3-dev-
|
|
3
|
+
"version": "0.10.3-dev-3ce0599.0+3ce0599",
|
|
4
4
|
"description": "SwingSet ocap support layer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"lint:eslint": "eslint ."
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@agoric/assert": "0.6.1-dev-
|
|
21
|
-
"@agoric/internal": "0.3.3-dev-
|
|
22
|
-
"@agoric/store": "0.9.3-dev-
|
|
20
|
+
"@agoric/assert": "0.6.1-dev-3ce0599.0+3ce0599",
|
|
21
|
+
"@agoric/internal": "0.3.3-dev-3ce0599.0+3ce0599",
|
|
22
|
+
"@agoric/store": "0.9.3-dev-3ce0599.0+3ce0599",
|
|
23
23
|
"@endo/eventual-send": "^0.17.3",
|
|
24
24
|
"@endo/exo": "^0.2.3",
|
|
25
25
|
"@endo/far": "^0.2.19",
|
|
@@ -54,11 +54,14 @@
|
|
|
54
54
|
"files": [
|
|
55
55
|
"test/**/test-*.js"
|
|
56
56
|
],
|
|
57
|
+
"require": [
|
|
58
|
+
"@endo/init/debug.js"
|
|
59
|
+
],
|
|
57
60
|
"timeout": "20m",
|
|
58
61
|
"workerThreads": false
|
|
59
62
|
},
|
|
60
63
|
"publishConfig": {
|
|
61
64
|
"access": "public"
|
|
62
65
|
},
|
|
63
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "3ce0599d5173b802598b5bedf57d3c30f016f789"
|
|
64
67
|
}
|
package/src/liveslots.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint @typescript-eslint/no-floating-promises: "warn" */
|
|
1
2
|
import {
|
|
2
3
|
Remotable,
|
|
3
4
|
passStyleOf,
|
|
@@ -1601,7 +1602,7 @@ function build(
|
|
|
1601
1602
|
// *not* directly wait for the userspace function to complete, nor for
|
|
1602
1603
|
// any promise it returns to fire.
|
|
1603
1604
|
const p = Promise.resolve(delivery).then(unmeteredDispatch);
|
|
1604
|
-
p.finally(() => (complete = true));
|
|
1605
|
+
void p.finally(() => (complete = true));
|
|
1605
1606
|
|
|
1606
1607
|
// Instead, we wait for userspace to become idle by draining the
|
|
1607
1608
|
// promise queue. We clean up and then examine/return 'p' so any
|
package/test/test-baggage.js
CHANGED
package/test/test-cache.js
CHANGED
package/test/test-collections.js
CHANGED
package/test/test-liveslots.js
CHANGED