@agoric/async-flow 0.1.1-dev-0705f2c.0 → 0.1.1-dev-940d3f0.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 -8
- package/src/convert.js +1 -1
- package/src/equate.js +1 -1
- package/src/replay-membrane.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/async-flow",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-940d3f0.0+940d3f0",
|
|
4
4
|
"description": "Upgrade async functions at await points by replay",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/Agoric/agoric-sdk",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"author": "Agoric",
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@agoric/base-zone": "0.1.1-dev-
|
|
28
|
-
"@agoric/internal": "0.3.3-dev-
|
|
29
|
-
"@agoric/store": "0.9.3-dev-
|
|
30
|
-
"@agoric/vow": "0.1.1-dev-
|
|
27
|
+
"@agoric/base-zone": "0.1.1-dev-940d3f0.0+940d3f0",
|
|
28
|
+
"@agoric/internal": "0.3.3-dev-940d3f0.0+940d3f0",
|
|
29
|
+
"@agoric/store": "0.9.3-dev-940d3f0.0+940d3f0",
|
|
30
|
+
"@agoric/vow": "0.1.1-dev-940d3f0.0+940d3f0",
|
|
31
31
|
"@endo/common": "^1.2.2",
|
|
32
32
|
"@endo/errors": "^1.2.2",
|
|
33
33
|
"@endo/eventual-send": "^1.2.2",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"@endo/promise-kit": "^1.1.2"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
41
|
-
"@agoric/zone": "0.2.3-dev-
|
|
40
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-940d3f0.0+940d3f0",
|
|
41
|
+
"@agoric/zone": "0.2.3-dev-940d3f0.0+940d3f0",
|
|
42
42
|
"@endo/env-options": "^1.1.4",
|
|
43
43
|
"@endo/ses-ava": "^1.2.2",
|
|
44
44
|
"ava": "^5.3.0"
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"typeCoverage": {
|
|
63
63
|
"atLeast": 77.83
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "940d3f0a993ca45a6bb0893bd59e6df1f22d9143"
|
|
66
66
|
}
|
package/src/convert.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Fail, X, annotateError, makeError, q } from '@endo/errors';
|
|
2
2
|
import { throwLabeled } from '@endo/common/throw-labeled.js';
|
|
3
|
+
import { objectMap } from '@endo/common/object-map.js';
|
|
3
4
|
import {
|
|
4
5
|
getErrorConstructor,
|
|
5
6
|
getTag,
|
|
@@ -8,7 +9,6 @@ import {
|
|
|
8
9
|
passStyleOf,
|
|
9
10
|
} from '@endo/pass-style';
|
|
10
11
|
import { isVow } from '@agoric/vow/src/vow-utils.js';
|
|
11
|
-
import { objectMap } from '@endo/common/object-map.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* @import {Passable} from '@endo/pass-style'
|
package/src/equate.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Fail, X, annotateError, q } from '@endo/errors';
|
|
2
2
|
import { throwLabeled } from '@endo/common/throw-labeled.js';
|
|
3
3
|
import { getTag, isObject, passStyleOf } from '@endo/pass-style';
|
|
4
|
-
import { isVow } from '@agoric/vow/src/vow-utils.js';
|
|
5
4
|
import { recordNames } from '@endo/marshal';
|
|
5
|
+
import { isVow } from '@agoric/vow/src/vow-utils.js';
|
|
6
6
|
|
|
7
7
|
const { is } = Object;
|
|
8
8
|
|
package/src/replay-membrane.js
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
/* eslint-disable no-use-before-define */
|
|
2
2
|
import { Fail, X, b, makeError, q } from '@endo/errors';
|
|
3
|
+
import { E } from '@endo/eventual-send';
|
|
4
|
+
import { getMethodNames } from '@endo/eventual-send/utils.js';
|
|
5
|
+
import { throwLabeled } from '@endo/common/throw-labeled.js';
|
|
6
|
+
import { objectMap } from '@endo/common/object-map.js';
|
|
3
7
|
import {
|
|
4
8
|
Far,
|
|
5
9
|
Remotable,
|
|
@@ -8,11 +12,7 @@ import {
|
|
|
8
12
|
makeTagged,
|
|
9
13
|
passStyleOf,
|
|
10
14
|
} from '@endo/pass-style';
|
|
11
|
-
import { E } from '@endo/eventual-send';
|
|
12
|
-
import { throwLabeled } from '@endo/common/throw-labeled.js';
|
|
13
15
|
import { heapVowE } from '@agoric/vow/vat.js';
|
|
14
|
-
import { getMethodNames } from '@endo/eventual-send/utils.js';
|
|
15
|
-
import { objectMap } from '@endo/common/object-map.js';
|
|
16
16
|
import { isVow } from '@agoric/vow/src/vow-utils.js';
|
|
17
17
|
import { makeEquate } from './equate.js';
|
|
18
18
|
import { makeConvertKit } from './convert.js';
|