diff options
Diffstat (limited to 'cli/compilers/ts.rs')
-rw-r--r-- | cli/compilers/ts.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/compilers/ts.rs b/cli/compilers/ts.rs index 037043368..f3147334f 100644 --- a/cli/compilers/ts.rs +++ b/cli/compilers/ts.rs @@ -246,9 +246,9 @@ impl TsCompiler { worker_state, ext, ); - worker.execute("denoMain()").unwrap(); - worker.execute("workerMain()").unwrap(); - worker.execute("compilerMain()").unwrap(); + worker.execute("bootstrapCompilerRuntime('TS')").unwrap(); + worker.execute("bootstrapWorkerRuntime()").unwrap(); + worker.execute("bootstrapTsCompiler()").unwrap(); worker } |