aboutsummaryrefslogtreecommitdiff
path: root/src/runtime.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/runtime.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime.ts b/src/runtime.ts
index f066df9..dae492c 100644
--- a/src/runtime.ts
+++ b/src/runtime.ts
@@ -71,7 +71,7 @@ const accumulateResults = async (effTyp: Type, node: Node): Promise<string[]> =>
return [hash]
},
- ChainIO: async () => {
+ Bind: async () => {
const inputTyp = effTyp.getProperty('input')?.getTypeAtLocation(node)
const inputResults = inputTyp && await accumulateResults(inputTyp, node)
return inputResults ?? []
@@ -149,7 +149,7 @@ const evalAccumulator = async (effNode: Node, node: Node) => {
await fs.writeFile(filePath, contents)
},
- ChainIO: async () => {
+ Bind: async () => {
const chainToKind = effTyp.getProperty('chainTo')?.getTypeAtLocation(node)
const [hashRes] = await accumulateResults(effTyp, node)
const chainRes = `(${typeToString(chainToKind)} & { input: ${RESULT_TYPE_NAME}[${JSON.stringify(hashRes)}]['output'] })['return']`