remove ExecutionKind

This commit is contained in:
Paul R. Tagliamonte
2025-02-24 11:35:44 -05:00
parent 32e907c099
commit 7b7ed0adb7

View File

@ -111,10 +111,8 @@ impl ExecutorContext {
prelude_range,
)
.await?;
let (module_memory, module_exports) = self
.exec_module_for_items(id, exec_state, ExecutionKind::Isolated, prelude_range)
.await
.unwrap();
let (module_memory, module_exports) =
self.exec_module_for_items(id, exec_state, prelude_range).await.unwrap();
for name in module_exports {
let item = exec_state
.memory()