Skip to content

Commit 8ad9fb2

Browse files
committed
fix(wasm-worker): remove duplicate paramBindings serialization in wasm-worker-entry (#1331)
paramBindings was serialized twice (lines 808 and 826 in the original code). The second spread was a no-op since it overwrites the first with the same value, but the duplicate caused confusion and was flagged in the Greptile review as evidence of an incomplete field migration.
1 parent 6e87234 commit 8ad9fb2

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/domain/wasm-worker-entry.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,6 @@ function serializeExtractorOutput(
823823
? { returnTypeMap: Array.from(symbols.returnTypeMap.entries()) }
824824
: {}),
825825
...(symbols.callAssignments?.length ? { callAssignments: symbols.callAssignments } : {}),
826-
...(symbols.paramBindings?.length ? { paramBindings: symbols.paramBindings } : {}),
827826
};
828827
}
829828

0 commit comments

Comments
 (0)