summaryrefslogtreecommitdiff
path: root/core/01_core.js
diff options
context:
space:
mode:
Diffstat (limited to 'core/01_core.js')
-rw-r--r--core/01_core.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/01_core.js b/core/01_core.js
index d9a110eea..66530f7d5 100644
--- a/core/01_core.js
+++ b/core/01_core.js
@@ -195,7 +195,6 @@
this.name = "BadResource";
}
}
- const BadResourcePrototype = BadResource.prototype;
class Interrupted extends Error {
constructor(msg) {
@@ -203,7 +202,6 @@
this.name = "Interrupted";
}
}
- const InterruptedPrototype = Interrupted.prototype;
// Extra Deno.core.* exports
const core = ObjectAssign(globalThis.Deno.core, {
@@ -223,9 +221,7 @@
opresolve,
syncOpsCache,
BadResource,
- BadResourcePrototype,
Interrupted,
- InterruptedPrototype,
});
ObjectAssign(globalThis.__bootstrap, { core });