diff options
Diffstat (limited to 'runtime/js/40_error_stack.js')
-rw-r--r-- | runtime/js/40_error_stack.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/runtime/js/40_error_stack.js b/runtime/js/40_error_stack.js deleted file mode 100644 index 4269bf1ac..000000000 --- a/runtime/js/40_error_stack.js +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -"use strict"; - -((window) => { - const core = window.Deno.core; - - function opFormatDiagnostics(diagnostics) { - return core.opSync("op_format_diagnostic", diagnostics); - } - - window.__bootstrap.errorStack = { - opFormatDiagnostics, - }; -})(this); |