summaryrefslogtreecommitdiff
path: root/cli/compilers/wasm.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-21 15:53:29 +0100
committerGitHub <noreply@github.com>2020-01-21 15:53:29 +0100
commit5e2fd183ff1fe240ddbd864dbf1e6a0941fb4582 (patch)
treebf550552bd54e7adbd87749ae663b8fafb2c4f0d /cli/compilers/wasm.rs
parent0cd605515c99458fa80cd4a1a3906f3db37a86ca (diff)
refactor: Rename JS entry functions (#3732)
Diffstat (limited to 'cli/compilers/wasm.rs')
-rw-r--r--cli/compilers/wasm.rs6
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
}