diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-05-03 19:45:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-03 19:45:57 +0200 |
commit | 3f08a40412d89bd54222ad51fc1aaeb508e2e5e7 (patch) | |
tree | 61c8cac3376e4ef7f842dd3267bfd7ada31806c3 /core/bindings.rs | |
parent | 5ddb83a4c2a5622d0ea173c0798550ae76e1fd69 (diff) |
refactor: add core.formatLocationFilename, remove op_format_filename (#14474)
This commit moves "op_format_location" to "core/ops_builtin.rs"
and removes "Deno.core.createPrepareStackTrace" in favor of
"Deno.core.prepareStackTrace".
Co-authored-by: Aaron O'Mullan <aaron.omullan@gmail.com>
Diffstat (limited to 'core/bindings.rs')
-rw-r--r-- | core/bindings.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/bindings.rs b/core/bindings.rs index 889229bb5..1816cdefb 100644 --- a/core/bindings.rs +++ b/core/bindings.rs @@ -243,6 +243,7 @@ pub fn initialize_context<'s>( set_func(scope, core_val, "destructureError", destructure_error); set_func(scope, core_val, "terminate", terminate); set_func(scope, core_val, "applySourceMap", apply_source_map); + // Direct bindings on `window`. set_func(scope, global, "queueMicrotask", queue_microtask); |