summaryrefslogtreecommitdiff
path: root/cli/js/globals.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-04-11 17:19:36 -0400
committerGitHub <noreply@github.com>2020-04-11 17:19:36 -0400
commit637a9ecd6a3f3311601b4de36f6035ae63297f77 (patch)
tree291cf38b77bf2709b538fb4918d753c05511e1f1 /cli/js/globals.ts
parentda28fc1e7b4551281ad14d49c7fb396010ba0107 (diff)
dedup URLSearchParams, URL, Location, DOMStringList (#4719)
Diffstat (limited to 'cli/js/globals.ts')
-rw-r--r--cli/js/globals.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/globals.ts b/cli/js/globals.ts
index 059a70ee7..7e708d018 100644
--- a/cli/js/globals.ts
+++ b/cli/js/globals.ts
@@ -213,8 +213,8 @@ export const windowOrWorkerGlobalScopeProperties = {
DOMException: nonEnumerable(domException.DOMExceptionImpl),
Event: nonEnumerable(event.EventImpl),
EventTarget: nonEnumerable(eventTarget.EventTargetImpl),
- URL: nonEnumerable(url.URL),
- URLSearchParams: nonEnumerable(urlSearchParams.URLSearchParams),
+ URL: nonEnumerable(url.URLImpl),
+ URLSearchParams: nonEnumerable(urlSearchParams.URLSearchParamsImpl),
Headers: nonEnumerable(headers.Headers),
FormData: nonEnumerable(formData.FormData),
TextEncoder: nonEnumerable(textEncoding.TextEncoder),