TypeScript/tests/baselines/reference/symbolProperty38.types
Andy a299d2dd1c
isDeclarationName: support ComputedPropertyName (#22123)
* isDeclarationName: support ComputedPropertyName

* update additional baseline
2018-02-22 15:53:49 -08:00

20 lines
475 B
Plaintext

=== tests/cases/conformance/es6/Symbols/symbolProperty38.ts ===
interface I {
>I : I
[Symbol.isConcatSpreadable]: string;
>[Symbol.isConcatSpreadable] : string
>Symbol.isConcatSpreadable : symbol
>Symbol : SymbolConstructor
>isConcatSpreadable : symbol
}
interface I {
>I : I
[Symbol.isConcatSpreadable]: string;
>[Symbol.isConcatSpreadable] : string
>Symbol.isConcatSpreadable : symbol
>Symbol : SymbolConstructor
>isConcatSpreadable : symbol
}