diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-04 23:04:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 03:04:08 +0000 |
commit | 17574f1ef7adf4aea91ba497759ac3e3fed50f1a (patch) | |
tree | b2a7ec4121c6d8cca3a3714b08aa6b5c292fca86 /runtime/js/90_deno_ns.js | |
parent | b40086fd7da3729d1d59b312c89ee57747fc66a9 (diff) |
refactor: remove unused 40_diagnostics.js file (#18021)
This file was not used anywhere - even though it exposed an unstable
"Deno.DiagnosticCategory" API. Seems like a left over from when we
had "Deno.emit" API.
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 6bb3d10d6..a76eb5bde 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -18,7 +18,6 @@ import * as io from "internal:deno_io/12_io.js"; import * as buffer from "internal:runtime/13_buffer.js"; import * as fs from "internal:runtime/30_fs.js"; import * as os from "internal:runtime/30_os.js"; -import * as diagnostics from "internal:runtime/40_diagnostics.js"; import * as files from "internal:runtime/40_files.js"; import * as fsEvents from "internal:runtime/40_fs_events.js"; import * as process from "internal:runtime/40_process.js"; @@ -158,7 +157,6 @@ const denoNs = { }; const denoNsUnstable = { - DiagnosticCategory: diagnostics.DiagnosticCategory, listenDatagram: net.listenDatagram, umask: fs.umask, HttpClient: httpClient.HttpClient, |