summaryrefslogtreecommitdiff
path: root/ext/web/02_event.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/web/02_event.js')
-rw-r--r--ext/web/02_event.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/web/02_event.js b/ext/web/02_event.js
index 37cdab9a2..40731af4c 100644
--- a/ext/web/02_event.js
+++ b/ext/web/02_event.js
@@ -7,9 +7,9 @@
const core = globalThis.Deno.core;
const ops = core.ops;
-import * as webidl from "internal:deno_webidl/00_webidl.js";
-import DOMException from "internal:deno_web/01_dom_exception.js";
-import { createFilteredInspectProxy } from "internal:deno_console/02_console.js";
+import * as webidl from "ext:deno_webidl/00_webidl.js";
+import DOMException from "ext:deno_web/01_dom_exception.js";
+import { createFilteredInspectProxy } from "ext:deno_console/02_console.js";
const primordials = globalThis.__bootstrap.primordials;
const {
ArrayPrototypeFilter,
@@ -1469,7 +1469,7 @@ function reportException(error) {
const frame = frames[i];
if (
typeof frame.fileName == "string" &&
- !StringPrototypeStartsWith(frame.fileName, "internal:")
+ !StringPrototypeStartsWith(frame.fileName, "ext:")
) {
filename = frame.fileName;
lineno = frame.lineNumber;