summaryrefslogtreecommitdiff
path: root/runtime/js
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-02-04 17:03:14 -0700
committerGitHub <noreply@github.com>2024-02-04 17:03:14 -0700
commit56f58a047e3c1cc27ff55988f25173cc18ef6aeb (patch)
tree2a7a288c385d54d1384c00c20cdbc168a046218f /runtime/js
parent0f7f98795129f3f6bef51d08da9accca5e9ca9cc (diff)
chore: bump deno core (#22243)
Migrations: - Error registration no longer required for Interrupted or BadResource (these are core exception) - `include_js_files!`/`ExtensionFileSource` changes
Diffstat (limited to 'runtime/js')
-rw-r--r--runtime/js/99_main.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 3e9e9c6b1..3022635ec 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -378,11 +378,9 @@ core.registerErrorClass("BrokenPipe", errors.BrokenPipe);
core.registerErrorClass("AlreadyExists", errors.AlreadyExists);
core.registerErrorClass("InvalidData", errors.InvalidData);
core.registerErrorClass("TimedOut", errors.TimedOut);
-core.registerErrorClass("Interrupted", errors.Interrupted);
core.registerErrorClass("WouldBlock", errors.WouldBlock);
core.registerErrorClass("WriteZero", errors.WriteZero);
core.registerErrorClass("UnexpectedEof", errors.UnexpectedEof);
-core.registerErrorClass("BadResource", errors.BadResource);
core.registerErrorClass("Http", errors.Http);
core.registerErrorClass("Busy", errors.Busy);
core.registerErrorClass("NotSupported", errors.NotSupported);