TypeScript/tests/baselines/reference/keyofObjectWithGlobalSymbolIncluded.symbols
Wesley Wigham 87d10eb055
Eliminate well known symbols as a concept in the checker and rely on unique symbols (#42543)
* Eliminate well-known symbols in the checker: 2021 edition

* Actually update the lib text to say unique symbol, too (this is unneeded with compat code in place, but this makes goto-def make more sense)

* Add test showing mismatched symbol constructor type interop

* Add more test cases for some other related issues this fixes

* Revert computed name change

* Style comments
2021-02-22 14:43:28 -08:00

18 lines
1,003 B
Plaintext

=== tests/cases/compiler/keyofObjectWithGlobalSymbolIncluded.ts ===
const obj = {
>obj : Symbol(obj, Decl(keyofObjectWithGlobalSymbolIncluded.ts, 0, 5))
[Symbol.species]: Array
>[Symbol.species] : Symbol([Symbol.species], Decl(keyofObjectWithGlobalSymbolIncluded.ts, 0, 13))
>Symbol.species : Symbol(SymbolConstructor.species, Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
>Symbol : Symbol(Symbol, Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
>species : Symbol(SymbolConstructor.species, Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
>Array : Symbol(Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
};
type Q = keyof typeof obj;
>Q : Symbol(Q, Decl(keyofObjectWithGlobalSymbolIncluded.ts, 2, 2))
>obj : Symbol(obj, Decl(keyofObjectWithGlobalSymbolIncluded.ts, 0, 5))