From 521cb4ca9b9b02f7ba3150338d5f3c4b035aab8d Mon Sep 17 00:00:00 2001 From: Kenta Moriuchi Date: Thu, 9 Mar 2023 13:09:40 +0900 Subject: fix(rumtime): Add `Deno.` prefix for registered symbols (#18086) --- ext/web/02_event.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/web/02_event.js b/ext/web/02_event.js index dd8b4f57b..f354bf182 100644 --- a/ext/web/02_event.js +++ b/ext/web/02_event.js @@ -1062,7 +1062,7 @@ class EventTarget { // This prevents the recursive dispatches of unload events. // See https://github.com/denoland/deno/issues/9201. if (event.type === "unload" && self === globalThis_) { - globalThis_[SymbolFor("isUnloadDispatched")] = true; + globalThis_[SymbolFor("Deno.isUnloadDispatched")] = true; } const { listeners } = self[eventTargetData]; -- cgit v1.2.3