@agoric/swingset-liveslots 0.10.3-dev-2c609b8.0 → 0.10.3-dev-eddf36d.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 +6 -6
- package/src/virtualObjectManager.js +2 -34
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-eddf36d.0+eddf36d",
|
|
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-eddf36d.0+eddf36d",
|
|
21
|
+
"@agoric/internal": "0.3.3-dev-eddf36d.0+eddf36d",
|
|
22
|
+
"@agoric/store": "0.9.3-dev-eddf36d.0+eddf36d",
|
|
23
23
|
"@endo/eventual-send": "^1.1.0",
|
|
24
24
|
"@endo/exo": "^1.1.0",
|
|
25
25
|
"@endo/far": "^1.0.2",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@endo/promise-kit": "^1.0.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@agoric/kmarshal": "0.1.1-dev-
|
|
34
|
+
"@agoric/kmarshal": "0.1.1-dev-eddf36d.0+eddf36d",
|
|
35
35
|
"ava": "^5.3.0"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"typeCoverage": {
|
|
68
68
|
"atLeast": 75.1
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "eddf36d9c5d28bd0632d73ccfa89715ca5e3f901"
|
|
71
71
|
}
|
|
@@ -17,23 +17,9 @@ import {
|
|
|
17
17
|
/** @template T @typedef {import('@agoric/vat-data').DefineKindOptions<T>} DefineKindOptions */
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
|
-
* @typedef {(
|
|
21
|
-
* representative: any
|
|
22
|
-
* ) => import('@endo/exo/src/exo-tools.js').ClassContext | undefined} ClassContextProvider
|
|
23
|
-
* Definition only temporarily copied from exo-tools.js to here.
|
|
24
|
-
* TODO Once agoric-sdk is upgraded to depend on an `@endo/exo` incorporating
|
|
25
|
-
* https://github.com/endojs/endo/pull/1966
|
|
26
|
-
* then replace with the following (fixing the implied "@")
|
|
20
|
+
* @typedef {import('@endo/exo/src/exo-tools.js').ClassContextProvider } ClassContextProvider
|
|
27
21
|
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
* @typedef {(facet: any) => import('@endo/exo/src/exo-tools.js').KitContext | undefined} KitContextProvider
|
|
31
|
-
* Definition only temporarily copied from exo-tools.js to here.
|
|
32
|
-
* TODO Once agoric-sdk is upgraded to depend on an `@endo/exo` incorporating
|
|
33
|
-
* https://github.com/endojs/endo/pull/1966
|
|
34
|
-
* then replace with the following (fixing the implied "@")
|
|
35
|
-
*
|
|
36
|
-
* at-typedef {import('@endo/exo/src/exo-tools.js').KitContextProvider } KitContextProvider
|
|
22
|
+
* @typedef {import('@endo/exo/src/exo-tools.js').KitContextProvider } KitContextProvider
|
|
37
23
|
*/
|
|
38
24
|
|
|
39
25
|
/**
|
|
@@ -1005,15 +991,6 @@ export const makeVirtualObjectManager = (
|
|
|
1005
991
|
|
|
1006
992
|
proto = defendPrototypeKit(
|
|
1007
993
|
tag,
|
|
1008
|
-
// TODO Once agoric-sdk is upgraded to depend on an `@endo/exo`
|
|
1009
|
-
// incorporating https://github.com/endojs/endo/pull/1966
|
|
1010
|
-
// Then the following at-ts-ignore will no longer be needed.
|
|
1011
|
-
// However, it is an at-ts-ignore rather than an
|
|
1012
|
-
// at-ts-expect-error to be compat with endo both before and
|
|
1013
|
-
// after, until we're safely across the transition.
|
|
1014
|
-
//
|
|
1015
|
-
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
|
|
1016
|
-
// @ts-ignore
|
|
1017
994
|
harden(contextProviderKit),
|
|
1018
995
|
behavior,
|
|
1019
996
|
thisfulMethods,
|
|
@@ -1028,15 +1005,6 @@ export const makeVirtualObjectManager = (
|
|
|
1028
1005
|
};
|
|
1029
1006
|
proto = defendPrototype(
|
|
1030
1007
|
tag,
|
|
1031
|
-
// TODO Once agoric-sdk is upgraded to depend on an `@endo/exo`
|
|
1032
|
-
// incorporating https://github.com/endojs/endo/pull/1966
|
|
1033
|
-
// Then the following at-ts-ignore will no longer be needed.
|
|
1034
|
-
// However, it is an at-ts-ignore rather than an
|
|
1035
|
-
// at-ts-expect-error to be compat with endo both before and
|
|
1036
|
-
// after, until we're safely across the transition.
|
|
1037
|
-
//
|
|
1038
|
-
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
|
|
1039
|
-
// @ts-ignore
|
|
1040
1008
|
harden(contextProvider),
|
|
1041
1009
|
behavior,
|
|
1042
1010
|
thisfulMethods,
|