TypeScript/tests/baselines/reference/multiLinePropertyAccessAndArrowFunctionIndent1.symbols
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

20 lines
776 B
Plaintext

=== tests/cases/compiler/multiLinePropertyAccessAndArrowFunctionIndent1.ts ===
return this.edit(role)
>this : Symbol(globalThis)
.then((role: Role) =>
>role : Symbol(role, Decl(multiLinePropertyAccessAndArrowFunctionIndent1.ts, 1, 11))
>Role : Symbol(Role)
this.roleService.add(role)
>this : Symbol(globalThis)
>role : Symbol(role, Decl(multiLinePropertyAccessAndArrowFunctionIndent1.ts, 1, 11))
.then((data: ng.IHttpPromiseCallbackArg<Role>) => data.data));
>data : Symbol(data, Decl(multiLinePropertyAccessAndArrowFunctionIndent1.ts, 3, 19))
>ng : Symbol(ng)
>IHttpPromiseCallbackArg : Symbol(ng.IHttpPromiseCallbackArg)
>Role : Symbol(Role)
>data : Symbol(data, Decl(multiLinePropertyAccessAndArrowFunctionIndent1.ts, 3, 19))