TypeScript/tests/baselines/reference/parserMemberVariableDeclaration2.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/MemberVariableDeclarations/parserMemberVariableDeclaration2.ts ===
class C {
>C : Symbol(C, Decl(parserMemberVariableDeclaration2.ts, 0, 0))
static static Foo;
>static : Symbol(C.static, Decl(parserMemberVariableDeclaration2.ts, 0, 9))
>Foo : Symbol(C.Foo, Decl(parserMemberVariableDeclaration2.ts, 1, 15))
}