mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
fix(webidl): use primordial for SymbolToStringTag (#11275)
This commit is contained in:
parent
a80e34f92c
commit
6a4769670d
1 changed files with 1 additions and 1 deletions
|
@ -926,7 +926,7 @@
|
|||
|
||||
function mixinPairIterable(name, prototype, dataSymbol, keyKey, valueKey) {
|
||||
const iteratorPrototype = ObjectCreate(globalIteratorPrototype, {
|
||||
[Symbol.toStringTag]: { configurable: true, value: `${name} Iterator` },
|
||||
[SymbolToStringTag]: { configurable: true, value: `${name} Iterator` },
|
||||
});
|
||||
define(iteratorPrototype, {
|
||||
next() {
|
||||
|
|
Loading…
Add table
Reference in a new issue