From 5e2fd183ff1fe240ddbd864dbf1e6a0941fb4582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 21 Jan 2020 15:53:29 +0100 Subject: refactor: Rename JS entry functions (#3732) --- cli/compilers/wasm.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli/compilers/wasm.rs') 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 } -- cgit v1.2.3