TypeScript/tests/baselines/reference/parserIndexMemberDeclaration10.symbols
Orta Therox 016d78b09e
Allow for class static vars to be called static (#44813)
* Allow for class static vars to be called static - re: #41127

* Add the baselines
2021-10-01 14:28:08 +01:00

9 lines
367 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration10.ts ===
class C {
>C : Symbol(C, Decl(parserIndexMemberDeclaration10.ts, 0, 0))
static static [x: string]: string;
>static : Symbol(C.static, Decl(parserIndexMemberDeclaration10.ts, 0, 9))
>x : Symbol(x, Decl(parserIndexMemberDeclaration10.ts, 1, 18))
}