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, prelude_range,
) )
.await?; .await?;
let (module_memory, module_exports) = self let (module_memory, module_exports) =
.exec_module_for_items(id, exec_state, ExecutionKind::Isolated, prelude_range) self.exec_module_for_items(id, exec_state, prelude_range).await.unwrap();
.await
.unwrap();
for name in module_exports { for name in module_exports {
let item = exec_state let item = exec_state
.memory() .memory()