diff options
Diffstat (limited to 'core/01_core.js')
-rw-r--r-- | core/01_core.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/01_core.js b/core/01_core.js index a8bdeb2a8..7663db5d9 100644 --- a/core/01_core.js +++ b/core/01_core.js @@ -453,7 +453,6 @@ BadResourcePrototype, Interrupted, InterruptedPrototype, - enableOpCallTracing, isOpCallTracingEnabled, opCallTraces, refOp, @@ -507,8 +506,11 @@ }); ObjectAssign(globalThis.__bootstrap, { core }); - const internals = {}; - ObjectAssign(globalThis.__bootstrap, { internals }); + ObjectAssign(globalThis.__bootstrap, { + internals: { + enableOpCallTracing, + }, + }); ObjectAssign(globalThis.Deno, { core }); // Direct bindings on `globalThis` |