summaryrefslogtreecommitdiff
path: root/cli/compilers
diff options
context:
space:
mode:
Diffstat (limited to 'cli/compilers')
-rw-r--r--cli/compilers/ts.rs2
-rw-r--r--cli/compilers/wasm.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/compilers/ts.rs b/cli/compilers/ts.rs
index 0e3e5c26c..0560ad292 100644
--- a/cli/compilers/ts.rs
+++ b/cli/compilers/ts.rs
@@ -267,7 +267,7 @@ impl TsCompiler {
startup_data::compiler_isolate_init(),
worker_state,
);
- worker.execute("bootstrapTsCompilerRuntime()").unwrap();
+ worker.execute("bootstrap.tsCompilerRuntime()").unwrap();
worker
}
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
}