@@ -11,7 +11,8 @@ import {
11
11
} from './coreProposalBehavior.js' ;
12
12
13
13
/**
14
- * @import {CoreEvalDescriptor} from './externalTypes.js';
14
+ * @import {BundleSource, BundleSourceResult} from '@endo/bundle-source';
15
+ * @import {AgSoloHome, CanonicalHome, CommonHome, CoreEvalBuilder, CoreEvalDescriptor, ManifestBundleRef} from './externalTypes.js';
15
16
*/
16
17
17
18
/**
@@ -27,20 +28,20 @@ import {
27
28
* summary to `${filePrefix}-plan.json), plus whatever bundles bundles the code loads)
28
29
* see CoreEval in {@link '/golang/cosmos/x/swingset/types/swingset.pb.go'}
29
30
* @param {string } filePrefix name on disk
30
- * @param {import('./externalTypes.js'). CoreEvalBuilder } builder
31
+ * @param {CoreEvalBuilder } builder
31
32
* @returns {Promise<CoreEvalPlan> }
32
33
*/
33
34
34
35
/**
35
36
*
36
- * @param {* } homeP
37
+ * @param {Promise<CommonHome | AgSoloHome> } homeP
37
38
* @param {{
38
- * bundleSource: (path: string) => Promise<NodeModule> ,
39
+ * bundleSource: BundleSource ,
39
40
* pathResolve: (path: string) => string,
40
41
* }} endowments
41
42
* @param {{
42
43
* getBundlerMaker: () => Promise<import('./getBundlerMaker.js').BundleMaker>,
43
- * getBundleSpec: (...args: * ) => Promise< import('./externalTypes .js').ManifestBundleRef>,
44
+ * getBundleSpec: (bundle: Promise<BundleSourceResult<'endoZipBase64'>>, getBundle: ( ) => import('./getBundlerMaker .js').Bundler, opts?: any) => Promise< ManifestBundleRef>,
44
45
* log?: typeof console.log,
45
46
* writeFile?: typeof fs.promises.writeFile
46
47
* }} io
@@ -63,6 +64,7 @@ export const makeWriteCoreEval = (
63
64
const getBundler = ( ) => {
64
65
if ( ! bundlerCache ) {
65
66
bundlerCache = E ( getBundlerMaker ( ) ) . makeBundler ( {
67
+ // @ts -expect-error lazily resolved for AgSoloHome
66
68
zoe : E . get ( homeP ) . zoe ,
67
69
} ) ;
68
70
}
@@ -95,17 +97,16 @@ export const makeWriteCoreEval = (
95
97
} ;
96
98
} ;
97
99
98
- let mutex =
99
- /** @type {Promise<import('./externalTypes.js').ManifestBundleRef | undefined> } */ (
100
- Promise . resolve ( )
101
- ) ;
100
+ let mutex = /** @type {Promise<ManifestBundleRef | undefined> } */ (
101
+ Promise . resolve ( )
102
+ ) ;
102
103
/** @type {WriteCoreEval } */
103
104
const writeCoreEval = async ( filePrefix , builder ) => {
104
105
/**
105
106
*
106
107
* @param {string } entrypoint
107
108
* @param {string } [bundlePath]
108
- * @returns {Promise<NodeModule > }
109
+ * @returns {Promise<BundleSourceResult<'endoZipBase64'> > }
109
110
*/
110
111
const getBundle = async ( entrypoint , bundlePath ) => {
111
112
if ( ! bundlePath ) {
@@ -125,7 +126,7 @@ export const makeWriteCoreEval = (
125
126
* @param {string } entrypoint
126
127
* @param {string } [bundlePath]
127
128
* @param {unknown } [opts]
128
- * @returns {Promise<import('./externalTypes.js'). ManifestBundleRef> }
129
+ * @returns {Promise<ManifestBundleRef> }
129
130
*/
130
131
const install = async ( entrypoint , bundlePath , opts ) => {
131
132
const bundle = getBundle ( entrypoint , bundlePath ) ;
@@ -146,7 +147,7 @@ export const makeWriteCoreEval = (
146
147
147
148
// Await a reference then publish to the board.
148
149
const cmds = [ ] ;
149
- /** @param {Promise<import('./externalTypes.js'). ManifestBundleRef> } refP */
150
+ /** @param {Promise<ManifestBundleRef> } refP */
150
151
const publishRef = async refP => {
151
152
const { fileName, ...ref } = await refP ;
152
153
if ( fileName ) {
0 commit comments