TypeScript/tests/baselines/reference/parser0_004152.types
Anders Hejlsberg a4f9bf0fce
Create type aliases for unresolved type symbols (#45976)
* Create type aliases for unresolved type symbols

* Accept new baselines

* Update fourslash tests

* Unresolved import aliases create tagged unresolved symbols

* Add comments

* Accept new baselines

* Add fourslash tests
2021-09-23 13:21:27 -07:00

29 lines
533 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/Fuzz/parser0_004152.ts ===
export class Game {
>Game : Game
private position = new DisplayPosition([), 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 3, 0], NoMove, 0);
>position : any
>new DisplayPosition([) : any
>DisplayPosition : any
>[ : undefined[]
>3 : any
>3 : any
>3 : any
>3 : any
>3 : any
>0 : any
>3 : any
>3 : any
>3 : any
>3 : any
>3 : any
>3 : any
>0 : any
>NoMove : any
>0 : any
private prevConfig: SeedCoords[][];
>prevConfig : SeedCoords[][]
}