diff options
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index d96aaaaae..233c5cd43 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -11,7 +11,6 @@ delete Object.prototype.__proto__; const eventTarget = window.__bootstrap.eventTarget; const globalInterfaces = window.__bootstrap.globalInterfaces; const location = window.__bootstrap.location; - const dispatchMinimal = window.__bootstrap.dispatchMinimal; const build = window.__bootstrap.build; const version = window.__bootstrap.version; const errorStack = window.__bootstrap.errorStack; @@ -142,12 +141,7 @@ delete Object.prototype.__proto__; } function runtimeStart(runtimeOptions, source) { - const opsMap = core.ops(); - for (const [name, opId] of Object.entries(opsMap)) { - if (name === "op_write" || name === "op_read") { - core.setAsyncHandler(opId, dispatchMinimal.asyncMsgFromRust); - } - } + core.ops(); core.setMacrotaskCallback(timers.handleTimerMacrotask); version.setVersions( |