diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-28 00:06:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 01:06:03 +0200 |
commit | 4041a7b8576047021c2eec711f013c6f01e471e0 (patch) | |
tree | e49ade03d1d888ea83a9fccf51ba8742a6365cc7 /cli/js/tests/dom_iterable_test.ts | |
parent | 2f0641885c62ba6a1e58ae0030f635efd3f35b2a (diff) |
BREAKING: Remove Deno.symbols namespace (#4936)
Diffstat (limited to 'cli/js/tests/dom_iterable_test.ts')
-rw-r--r-- | cli/js/tests/dom_iterable_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/tests/dom_iterable_test.ts b/cli/js/tests/dom_iterable_test.ts index 827a788a9..b9435b3bc 100644 --- a/cli/js/tests/dom_iterable_test.ts +++ b/cli/js/tests/dom_iterable_test.ts @@ -21,7 +21,7 @@ function setup() { // This is using an internal API we don't want published as types, so having // to cast to any to "trick" TypeScript // @ts-ignore TypeScript (as of 3.7) does not support indexing namespaces by symbol - DomIterable: Deno[Deno.symbols.internal].DomIterableMixin(Base, dataSymbol), + DomIterable: Deno[Deno.internal].DomIterableMixin(Base, dataSymbol), }; } |