summaryrefslogtreecommitdiff
path: root/core/01_core.js
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-01-27 16:27:22 +0100
committerGitHub <noreply@github.com>2022-01-27 16:27:22 +0100
commitf248e6f1778dc26db91d3322de2ecca5d1aa9866 (patch)
tree46b1ff59091cc8d31ff67427173d3a0148734007 /core/01_core.js
parent382a978859a7a7a4351542be818bb2e59523429c (diff)
Revert "refactor: update runtime code for primordial checks for "instanceof" (#13497)" (#13511)
This reverts commit 884143218fad0e18f7553aaf079d52de703f7601.
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 });