@agoric/base-zone 0.1.1-other-dev-fbe72e7.0.fbe72e7 → 0.1.1-other-dev-d15096d.0.d15096d

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/base-zone",
3
- "version": "0.1.1-other-dev-fbe72e7.0.fbe72e7",
3
+ "version": "0.1.1-other-dev-d15096d.0.d15096d",
4
4
  "description": "Allocation zone abstraction library and heap implementation",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/Agoric/agoric-sdk",
@@ -27,7 +27,7 @@
27
27
  "author": "Agoric",
28
28
  "license": "Apache-2.0",
29
29
  "dependencies": {
30
- "@agoric/store": "0.9.3-other-dev-fbe72e7.0.fbe72e7",
30
+ "@agoric/store": "0.9.3-other-dev-d15096d.0.d15096d",
31
31
  "@endo/common": "^1.2.13",
32
32
  "@endo/errors": "^1.2.13",
33
33
  "@endo/exo": "^1.5.12",
@@ -59,5 +59,5 @@
59
59
  "typeCoverage": {
60
60
  "atLeast": 93.22
61
61
  },
62
- "gitHead": "fbe72e72107f9997f788674e668c660d92ec4492"
62
+ "gitHead": "d15096dc4ff8b96e9b6cd11954c20d3a9efbb393"
63
63
  }
package/src/heap.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- export function makeHeapZone(baseLabel?: string): import("./types.js").Zone;
1
+ export function makeHeapZone(baseLabel?: string): Zone;
2
+ import type { Zone } from './types.js';
2
3
  //# sourceMappingURL=heap.d.ts.map
package/src/heap.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"heap.d.ts","sourceRoot":"","sources":["heap.js"],"names":[],"mappings":"AAmCO,yCAHI,MAAM,GACJ,OAAO,YAAY,EAAE,IAAI,CA4BrC"}
1
+ {"version":3,"file":"heap.d.ts","sourceRoot":"","sources":["heap.js"],"names":[],"mappings":"AAwCO,yCAHI,MAAM,GACJ,IAAI,CA4BhB;0BAhDsB,YAAY"}
package/src/heap.js CHANGED
@@ -15,7 +15,12 @@ import { agoricVatDataKeys as keys } from './keys.js';
15
15
  import { watchPromise } from './watch-promise.js';
16
16
 
17
17
  /**
18
- * @type {import('./types.js').Stores}
18
+ * @import {Stores} from './types.js';
19
+ * @import {Zone} from './types.js';
20
+ */
21
+
22
+ /**
23
+ * @type {Stores}
19
24
  */
20
25
  const detachedHeapStores = Far('heapStores', {
21
26
  detached: () => detachedHeapStores,
@@ -31,7 +36,7 @@ const detachedHeapStores = Far('heapStores', {
31
36
  * Create a heap (in-memory) zone that uses the default exo and store implementations.
32
37
  *
33
38
  * @param {string} [baseLabel]
34
- * @returns {import('./types.js').Zone}
39
+ * @returns {Zone}
35
40
  */
36
41
  export const makeHeapZone = (baseLabel = 'heapZone') => {
37
42
  const { makeOnce, wrapProvider } = makeOnceKit(baseLabel, detachedHeapStores);
package/src/keys.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  /**
2
2
  * KeyMakers compatible with `@agoric/vat-data`.
3
3
  *
4
- * @type {import('./types.js').KeyMakers}
4
+ * @type {KeyMakers}
5
5
  */
6
- export const agoricVatDataKeys: import("./types.js").KeyMakers;
6
+ export const agoricVatDataKeys: KeyMakers;
7
+ import type { KeyMakers } from './types.js';
7
8
  //# sourceMappingURL=keys.d.ts.map
package/src/keys.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["keys.js"],"names":[],"mappings":"AAQA;;;;GAIG;AACH,gCAFU,OAAO,YAAY,EAAE,SAAS,CAQtC"}
1
+ {"version":3,"file":"keys.d.ts","sourceRoot":"","sources":["keys.js"],"names":[],"mappings":"AAYA;;;;GAIG;AACH,gCAFU,SAAS,CAQjB;+BApB0B,YAAY"}
package/src/keys.js CHANGED
@@ -1,5 +1,9 @@
1
1
  // @ts-check
2
2
 
3
+ /**
4
+ * @import {KeyMakers} from './types.js';
5
+ */
6
+
3
7
  /** @param {string} label */
4
8
  const kind = label => `${label}_kindHandle`;
5
9
 
@@ -9,7 +13,7 @@ const singleton = label => `${label}_singleton`;
9
13
  /**
10
14
  * KeyMakers compatible with `@agoric/vat-data`.
11
15
  *
12
- * @type {import('./types.js').KeyMakers}
16
+ * @type {KeyMakers}
13
17
  */
14
18
  export const agoricVatDataKeys = {
15
19
  exoClass: label => harden([kind(label)]),
@@ -1,5 +1,7 @@
1
- export function makeOnceKit(debugName: string, stores: import("./types.js").Stores, backingStore?: import("@agoric/swingset-liveslots").MapStore<string, any>): {
1
+ export function makeOnceKit(debugName: string, stores: Stores, backingStore?: MapStore<string, any>): {
2
2
  makeOnce: <V>(key: string, maker: (key: string) => V) => V;
3
3
  wrapProvider: <T extends (key: string, ...rest: any[]) => any>(provider: T, labelToKeys?: (label: string) => string[]) => T;
4
4
  };
5
+ import type { Stores } from './types.js';
6
+ import type { MapStore } from '@agoric/swingset-liveslots';
5
7
  //# sourceMappingURL=make-once.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"make-once.d.ts","sourceRoot":"","sources":["make-once.js"],"names":[],"mappings":"AAYO,uCAJI,MAAM,UACN,OAAO,YAAY,EAAE,MAAM,iBAC3B,OAAO,4BAA4B,EAAE,QAAQ,CAAC,MAAM,EAAE,GAAG,CAAC;eAwDtD,CAAC,OACH,MAAM,SACN,CAAC,GAAG,EAAE,MAAM,KAAK,CAAC,KAChB,CAAC;mBAhCsC,CAAC,SAAxC,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAI,YACxC,CAAC,gBACD,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,EAAE,KACzB,CAAC;EA4Cf"}
1
+ {"version":3,"file":"make-once.d.ts","sourceRoot":"","sources":["make-once.js"],"names":[],"mappings":"AAiBO,uCAJI,MAAM,UACN,MAAM,iBACN,SAAS,MAAM,EAAE,GAAG,CAAC;eAwDjB,CAAC,OACH,MAAM,SACN,CAAC,GAAG,EAAE,MAAM,KAAK,CAAC,KAChB,CAAC;mBAhCsC,CAAC,SAAxC,CAAE,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAI,YACxC,CAAC,gBACD,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,EAAE,KACzB,CAAC;EA4Cf;4BArFwB,YAAY;8BACV,4BAA4B"}
package/src/make-once.js CHANGED
@@ -1,14 +1,19 @@
1
1
  // @ts-check
2
2
  import { Fail } from '@endo/errors';
3
3
 
4
+ /**
5
+ * @import {Stores} from './types.js';
6
+ * @import {MapStore} from '@agoric/swingset-liveslots';
7
+ */
8
+
4
9
  /** @param {string} label */
5
10
  const defaultLabelToKeys = label => harden([label]);
6
11
  harden(defaultLabelToKeys);
7
12
 
8
13
  /**
9
14
  * @param {string} debugName Only used internally for diagnostics, not available to user code
10
- * @param {import('./types.js').Stores} stores
11
- * @param {import('@agoric/swingset-liveslots').MapStore<string, any>} [backingStore]
15
+ * @param {Stores} stores
16
+ * @param {MapStore<string, any>} [backingStore]
12
17
  */
13
18
  export const makeOnceKit = (debugName, stores, backingStore = undefined) => {
14
19
  // We need a detached setStore so that it isn't persisted as part of the zone.
@@ -1,7 +1,7 @@
1
1
  export function wrapperMethods(wrapperKindName: string, uMethodNames: PropertyKey[], extraMethods?: Record<PropertyKey, (...args: any[]) => any>): {
2
2
  [x: string]: ((...args: any[]) => any) | ((...args: any[]) => any);
3
3
  };
4
- export function prepareAttenuatorMaker<U = any>(zone: import("@agoric/base-zone").Zone, uKindName: string, uMethodNames: (keyof U)[], options?: AttenuatorOptions<U>): MakeAttenuator;
4
+ export function prepareAttenuatorMaker<U = any>(zone: Zone, uKindName: string, uMethodNames: (keyof U)[], options?: AttenuatorOptions<U>): MakeAttenuator;
5
5
  export function attenuateOne<U extends unknown>(underlying: U, uMethodNames: (keyof U)[], options?: AttenuatorOptions<U>): Partial<U>;
6
6
  export type MakeAttenuator<U = any> = (underlying: U) => Partial<U>;
7
7
  export type AttenuatorThis<U = any> = {
@@ -21,11 +21,13 @@ export type AttenuatorOptions<U = any> = {
21
21
  * only on the synthesized interface guard for the attenuator, and
22
22
  * do not necessarily correspond to any method of the underlying.
23
23
  */
24
- extraMethodGuards?: Record<PropertyKey, import("@endo/patterns").MethodGuard> | undefined;
24
+ extraMethodGuards?: Record<PropertyKey, MethodGuard> | undefined;
25
25
  /**
26
26
  * Extra methods adding behavior only to the attenuator, and
27
27
  * do not necessarily correspond to any methods of the underlying.
28
28
  */
29
29
  extraMethods?: Record<PropertyKey, (this: AttenuatorThis<U>, ...args: any[]) => any> | undefined;
30
30
  };
31
+ import type { Zone } from '@agoric/base-zone';
32
+ import type { MethodGuard } from '@endo/patterns';
31
33
  //# sourceMappingURL=prepare-attenuator.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"prepare-attenuator.d.ts","sourceRoot":"","sources":["prepare-attenuator.js"],"names":[],"mappings":"AA2BO,gDAJI,MAAM,gBACN,WAAW,EAAE,iBACb,MAAM,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;4BAAd,GAAG,EAAE,KAAK,GAAG;EA6BlD;AAoDG,uCAVO,CAAC,cACJ,OAAO,mBAAmB,EAAE,IAAI,aAChC,MAAM,gBAEN,CAAC,MAAM,CAAC,CAAC,EAAE,YAGX,iBAAiB,CAAC,CAAC,CAAC,GAClB,cAAc,CA8B1B;AAqBM,6BANY,CAAC,8BACT,CAAC,gBACD,CAAC,MAAM,CAAC,CAAC,EAAE,YACX,iBAAiB,CAAC,CAAC,CAAC,GAClB,OAAO,CAAC,CAAC,CAAC,CAetB;2BA9Ga,CAAC,uBAEJ,CAAC,KACC,OAAO,CAAC,CAAC,CAAC;2BAIT,CAAC;UAED,OAAO,CAAC,CAAC,CAAC;WACV;QAAE,UAAU,EAAE,CAAC,CAAA;KAAE;;8BAIjB,CAAC;;;;;;;;;;;;;;;;8CAcH,cAAc,CAAC,CAAC,CAAC,WAAW,GAAG,EAAE,KAAK,GAAG"}
1
+ {"version":3,"file":"prepare-attenuator.d.ts","sourceRoot":"","sources":["prepare-attenuator.js"],"names":[],"mappings":"AAgCO,gDAJI,MAAM,gBACN,WAAW,EAAE,iBACb,MAAM,CAAC,WAAW,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC;4BAAd,GAAG,EAAE,KAAK,GAAG;EA6BlD;AAoDG,uCAVO,CAAC,cACJ,IAAI,aACJ,MAAM,gBAEN,CAAC,MAAM,CAAC,CAAC,EAAE,YAGX,iBAAiB,CAAC,CAAC,CAAC,GAClB,cAAc,CA8B1B;AAqBM,6BANY,CAAC,8BACT,CAAC,gBACD,CAAC,MAAM,CAAC,CAAC,EAAE,YACX,iBAAiB,CAAC,CAAC,CAAC,GAClB,OAAO,CAAC,CAAC,CAAC,CAetB;2BA9Ga,CAAC,uBAEJ,CAAC,KACC,OAAO,CAAC,CAAC,CAAC;2BAIT,CAAC;UAED,OAAO,CAAC,CAAC,CAAC;WACV;QAAE,UAAU,EAAE,CAAC,CAAA;KAAE;;8BAIjB,CAAC;;;;;;;;;;;;;;;;8CAcH,cAAc,CAAC,CAAC,CAAC,WAAW,GAAG,EAAE,KAAK,GAAG;;0BApF9B,mBAAmB;iCADZ,gBAAgB"}
@@ -3,6 +3,11 @@ import { fromUniqueEntries } from '@endo/common/from-unique-entries.js';
3
3
  import { M } from '@endo/patterns';
4
4
  import { makeHeapZone } from './heap.js';
5
5
 
6
+ /**
7
+ * @import {MethodGuard} from '@endo/patterns';
8
+ * @import {Zone} from '@agoric/base-zone';
9
+ */
10
+
6
11
  // This attenuator implementation is just a simplification of the
7
12
  // revocable kit implementation in prepare-revocable.js. The revocable kit
8
13
  // provides both attenuation and revocation, since we can have both for the
@@ -77,7 +82,7 @@ harden(wrapperMethods);
77
82
  * Defaults to the `uKindName`.
78
83
  * @property {Record<
79
84
  * PropertyKey,
80
- * import('@endo/patterns').MethodGuard
85
+ * MethodGuard
81
86
  * >} [extraMethodGuards]
82
87
  * For guarding the `extraMethods`, if you include them below. These appear
83
88
  * only on the synthesized interface guard for the attenuator, and
@@ -95,7 +100,7 @@ harden(wrapperMethods);
95
100
  * where the wrapper is an attenuator of the underlying.
96
101
  *
97
102
  * @template [U=any]
98
- * @param {import('@agoric/base-zone').Zone} zone
103
+ * @param {Zone} zone
99
104
  * @param {string} uKindName
100
105
  * The `kindName` of the underlying exo class
101
106
  * @param {(keyof U)[]} uMethodNames
@@ -1,4 +1,4 @@
1
- export function prepareRevocableMakerKit<U = any>(zone: import("@agoric/base-zone").Zone, uKindName: string, uMethodNames: PropertyKey[], options?: RevocableKitOptions<U>): RevocableMakerKit<U>;
1
+ export function prepareRevocableMakerKit<U = any>(zone: Zone, uKindName: string, uMethodNames: PropertyKey[], options?: RevocableKitOptions<U>): RevocableMakerKit<U>;
2
2
  export type MakeRevocable<U = any> = (underlying: U) => Partial<U>;
3
3
  export type MakeRevocableKit<U = any> = (underlying: U) => RevocableKit<U>;
4
4
  export type RevocableMakerKit<U = any> = {
@@ -36,11 +36,13 @@ export type RevocableKitOptions<U = any> = {
36
36
  * only on the synthesized interface guard for the revocable caretaker, and
37
37
  * do not necessarily correspond to any method of the underlying.
38
38
  */
39
- extraMethodGuards?: Record<PropertyKey, import("@endo/patterns").MethodGuard> | undefined;
39
+ extraMethodGuards?: Record<PropertyKey, MethodGuard> | undefined;
40
40
  /**
41
41
  * Extra methods adding behavior only to the revocable caretaker, and
42
42
  * do not necessarily correspond to any methods of the underlying.
43
43
  */
44
44
  extraMethods?: Record<PropertyKey, (this: RevocableKitThis<U>, ...args: any[]) => any> | undefined;
45
45
  };
46
+ import type { Zone } from '@agoric/base-zone';
47
+ import type { MethodGuard } from '@endo/patterns';
46
48
  //# sourceMappingURL=prepare-revocable.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"prepare-revocable.d.ts","sourceRoot":"","sources":["prepare-revocable.js"],"names":[],"mappings":"AAyFO,yCAVO,CAAC,cACJ,OAAO,mBAAmB,EAAE,IAAI,aAChC,MAAM,gBAEN,WAAW,EAAE,YAGb,mBAAmB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,CA4EhC;0BAvJa,CAAC,uBAEJ,CAAC,KACC,OAAO,CAAC,CAAC,CAAC;6BAIT,CAAC,uBAEJ,CAAC,KACC,YAAY,CAAC,CAAC,CAAC;8BAId,CAAC;YAED,CAAC,SAAS,EAAE,CAAC,KAAK,OAAO;;;;mBACzB,aAAa,CAAC,CAAC,CAAC;sBAEhB,gBAAgB,CAAC,CAAC,CAAC;;;YAKnB,MAAM,OAAO;;yBAIb,CAAC;aAED,YAAY;;;;eACZ,OAAO,CAAC,CAAC,CAAC;;6BAKV,CAAC;YAED,YAAY,CAAC,CAAC,CAAC;WACf;QAAE,UAAU,EAAE,CAAC,CAAA;KAAE;;gCAIjB,CAAC;;;;;;;;;;;;;;;;8CAcH,gBAAgB,CAAC,CAAC,CAAC,WAAW,GAAG,EAAE,KAAK,GAAG"}
1
+ {"version":3,"file":"prepare-revocable.d.ts","sourceRoot":"","sources":["prepare-revocable.js"],"names":[],"mappings":"AA6FO,yCAVO,CAAC,cACJ,IAAI,aACJ,MAAM,gBAEN,WAAW,EAAE,YAGb,mBAAmB,CAAC,CAAC,CAAC,GACpB,iBAAiB,CAAC,CAAC,CAAC,CA4EhC;0BAvJa,CAAC,uBAEJ,CAAC,KACC,OAAO,CAAC,CAAC,CAAC;6BAIT,CAAC,uBAEJ,CAAC,KACC,YAAY,CAAC,CAAC,CAAC;8BAId,CAAC;YAED,CAAC,SAAS,EAAE,CAAC,KAAK,OAAO;;;;mBACzB,aAAa,CAAC,CAAC,CAAC;sBAEhB,gBAAgB,CAAC,CAAC,CAAC;;;YAKnB,MAAM,OAAO;;yBAIb,CAAC;aAED,YAAY;;;;eACZ,OAAO,CAAC,CAAC,CAAC;;6BAKV,CAAC;YAED,YAAY,CAAC,CAAC,CAAC;WACf;QAAE,UAAU,EAAE,CAAC,CAAA;KAAE;;gCAIjB,CAAC;;;;;;;;;;;;;;;;8CAcH,gBAAgB,CAAC,CAAC,CAAC,WAAW,GAAG,EAAE,KAAK,GAAG;;0BAnEhC,mBAAmB;iCADZ,gBAAgB"}
@@ -1,7 +1,11 @@
1
1
  import { M } from '@endo/patterns';
2
2
  import { wrapperMethods } from './prepare-attenuator.js';
3
3
 
4
- /** @import {Amplify} from '@endo/exo'; */
4
+ /**
5
+ * @import {Amplify} from '@endo/exo';
6
+ * @import {MethodGuard} from '@endo/patterns';
7
+ * @import {Zone} from '@agoric/base-zone';
8
+ */
5
9
 
6
10
  // This revocable kit implementation provides for both attenuation and
7
11
  // revocation, since both can be provided at the cost of one level of
@@ -60,7 +64,7 @@ import { wrapperMethods } from './prepare-attenuator.js';
60
64
  * Defaults to the `uKindName`.
61
65
  * @property {Record<
62
66
  * PropertyKey,
63
- * import('@endo/patterns').MethodGuard
67
+ * MethodGuard
64
68
  * >} [extraMethodGuards]
65
69
  * For guarding the `extraMethods`, if you include them below. These appear
66
70
  * only on the synthesized interface guard for the revocable caretaker, and
@@ -78,7 +82,7 @@ import { wrapperMethods } from './prepare-attenuator.js';
78
82
  * where the wrapper is a revocable forwarder.
79
83
  *
80
84
  * @template [U=any]
81
- * @param {import('@agoric/base-zone').Zone} zone
85
+ * @param {Zone} zone
82
86
  * @param {string} uKindName
83
87
  * The `kindName` of the underlying exo class
84
88
  * @param {PropertyKey[]} uMethodNames
package/tools/greeter.js CHANGED
@@ -1,5 +1,9 @@
1
1
  import { M, getInterfaceGuardPayload } from '@endo/patterns';
2
2
 
3
+ /**
4
+ * @import {Zone} from '../src/types.js';
5
+ */
6
+
3
7
  /**
4
8
  * @template {{}} T
5
9
  * @param {T} obj
@@ -38,7 +42,7 @@ export const GreeterWithAdminI = M.interface('GreeterWithAdmin', {
38
42
  });
39
43
 
40
44
  /**
41
- * @param {import('../src/types.js').Zone} zone
45
+ * @param {Zone} zone
42
46
  * @param {string} label
43
47
  * @param {string} nick
44
48
  */
@@ -51,7 +55,7 @@ export const prepareGreeterSingleton = (zone, label, nick) => {
51
55
  };
52
56
 
53
57
  /**
54
- * @param {import('../src/types.js').Zone} zone
58
+ * @param {Zone} zone
55
59
  */
56
60
  export const prepareGreeter = zone =>
57
61
  zone.exoClass('Greeter', GreeterWithAdminI, nick => ({ nick }), {
@@ -60,7 +64,7 @@ export const prepareGreeter = zone =>
60
64
  });
61
65
 
62
66
  /**
63
- * @param {import('../src/types.js').Zone} zone
67
+ * @param {Zone} zone
64
68
  */
65
69
  export const prepareGreeterKit = zone =>
66
70
  zone.exoClassKit(
package/tools/testers.js CHANGED
@@ -1,8 +1,13 @@
1
1
  import * as g from './greeter.js';
2
2
 
3
3
  /**
4
- * @param {import('ava').Assertions} t
5
- * @param {import('../src/index.js').Zone} rootZone
4
+ * @import {Assertions} from 'ava';
5
+ * @import {Zone} from '../src/index.js';
6
+ */
7
+
8
+ /**
9
+ * @param {Assertions} t
10
+ * @param {Zone} rootZone
6
11
  */
7
12
  export const testMakeOnce = (t, rootZone) => {
8
13
  const subZone = rootZone.subZone('sub');
@@ -52,7 +57,7 @@ const alreadyExceptionSpec = {
52
57
 
53
58
  /**
54
59
  * @template T
55
- * @param {import('ava').Assertions} t
60
+ * @param {Assertions} t
56
61
  * @param {() => T} fn
57
62
  * @param {*} spec
58
63
  * @returns {T}
@@ -64,8 +69,8 @@ const secondThrows = (t, fn, spec = alreadyExceptionSpec) => {
64
69
  };
65
70
 
66
71
  /**
67
- * @param {import('ava').Assertions} t
68
- * @param {import('../src/index.js').Zone} rootZone
72
+ * @param {Assertions} t
73
+ * @param {Zone} rootZone
69
74
  */
70
75
  export const testFirstZoneIncarnation = (t, rootZone) => {
71
76
  const subZone = secondThrows(t, () => rootZone.subZone('sub'));
@@ -93,8 +98,8 @@ export const testFirstZoneIncarnation = (t, rootZone) => {
93
98
  };
94
99
 
95
100
  /**
96
- * @param {import('ava').Assertions} t
97
- * @param {import('../src/index.js').Zone} rootZone
101
+ * @param {Assertions} t
102
+ * @param {Zone} rootZone
98
103
  */
99
104
  export const testSecondZoneIncarnation = (t, rootZone) => {
100
105
  const subZone = secondThrows(t, () => rootZone.subZone('sub'));
@@ -1 +1 @@
1
- {"root":["./heap.js","./zone-helpers.js","./src/heap.js","./src/index.js","./src/is-passable.js","./src/keys.js","./src/make-once.js","./src/prepare-attenuator.js","./src/prepare-revocable.js","./src/types.js","./src/watch-promise.js"],"version":"5.9.2"}
1
+ {"root":["./heap.js","./zone-helpers.js","./src/heap.js","./src/index.js","./src/is-passable.js","./src/keys.js","./src/make-once.js","./src/prepare-attenuator.js","./src/prepare-revocable.js","./src/types.js","./src/watch-promise.js"],"version":"5.9.3"}