From f57aac77ff9ce514730504066daca0a61a959d32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 17 May 2022 19:50:31 +0200 Subject: BREAKING: Remove unstable Deno.emit and Deno.formatDiagnostics APIs (#14463) --- runtime/js/40_error_stack.js | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 runtime/js/40_error_stack.js (limited to 'runtime/js/40_error_stack.js') 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); -- cgit v1.2.3