TypeScript/tests/baselines/reference/parserMemberVariableDeclaration2.types
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
188 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration2.ts ===
class C {
>C : C
static static Foo;
>static : any
>Foo : any
}