diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-04-25 01:03:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 01:03:45 +0200 |
commit | 1378df33647e2608733d88121b77ff2f839cddfa (patch) | |
tree | e2ecdf2028761e88eeb777d93bdd807384a36863 /cli/compilers/wasm.rs | |
parent | 912a57f6a20c632c306f4e044df7618a3971abbf (diff) |
remove bootstrap methods from global scope after bootstrapping (#4869)
Diffstat (limited to 'cli/compilers/wasm.rs')
-rw-r--r-- | cli/compilers/wasm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/compilers/wasm.rs b/cli/compilers/wasm.rs index 4e8ba78f3..ed5603584 100644 --- a/cli/compilers/wasm.rs +++ b/cli/compilers/wasm.rs @@ -67,7 +67,7 @@ impl WasmCompiler { startup_data::compiler_isolate_init(), worker_state, ); - worker.execute("bootstrapWasmCompilerRuntime()").unwrap(); + worker.execute("bootstrap.wasmCompilerRuntime()").unwrap(); worker } |