diff options
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index b6ebd7930..591889ccd 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -186,7 +186,7 @@ impl CliMainWorker { if self.ps.options.trace_ops() { self.worker.js_runtime.execute_script( &located_script_name!(), - "Deno.core.enableOpCallTracing();", + "Deno[Deno.internal].core.enableOpCallTracing();", )?; } @@ -231,7 +231,7 @@ impl CliMainWorker { self.worker.execute_script( &located_script_name!(), - "Deno.core.enableOpCallTracing();", + "Deno[Deno.internal].core.enableOpCallTracing();", )?; if mode != TestMode::Documentation { |