diff options
Diffstat (limited to 'cli/compilers/wasm.rs')
-rw-r--r-- | cli/compilers/wasm.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/compilers/wasm.rs b/cli/compilers/wasm.rs index ca889be1f..e2a293f18 100644 --- a/cli/compilers/wasm.rs +++ b/cli/compilers/wasm.rs @@ -60,9 +60,9 @@ impl WasmCompiler { worker_state, ext, ); - worker.execute("denoMain('WASM')").unwrap(); - worker.execute("workerMain()").unwrap(); - worker.execute("wasmCompilerMain()").unwrap(); + worker.execute("bootstrapCompilerRuntime('WASM')").unwrap(); + worker.execute("bootstrapWorkerRuntime()").unwrap(); + worker.execute("bootstrapWasmCompiler()").unwrap(); worker } |