File: multiLinePropertyAccessAndArrowFunctionIndent1.types

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (35 lines) | stat: -rw-r--r-- 1,274 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
=== tests/cases/compiler/multiLinePropertyAccessAndArrowFunctionIndent1.ts ===
return this.edit(role)
>this.edit(role)    .then((role: Role) =>        this.roleService.add(role)            .then((data: ng.IHttpPromiseCallbackArg<Role>) => data.data)) : any
>this.edit(role)    .then : any
>this.edit(role) : any
>this.edit : any
>this : typeof globalThis
>edit : any
>role : any

    .then((role: Role) =>
>then : any
>(role: Role) =>        this.roleService.add(role)            .then((data: ng.IHttpPromiseCallbackArg<Role>) => data.data) : (role: Role) => any
>role : Role

        this.roleService.add(role)
>this.roleService.add(role)            .then((data: ng.IHttpPromiseCallbackArg<Role>) => data.data) : any
>this.roleService.add(role)            .then : any
>this.roleService.add(role) : any
>this.roleService.add : any
>this.roleService : any
>this : typeof globalThis
>roleService : any
>add : any
>role : Role

            .then((data: ng.IHttpPromiseCallbackArg<Role>) => data.data));
>then : any
>(data: ng.IHttpPromiseCallbackArg<Role>) => data.data : (data: ng.IHttpPromiseCallbackArg<Role>) => any
>data : ng.IHttpPromiseCallbackArg<Role>
>ng : any
>data.data : any
>data : ng.IHttpPromiseCallbackArg<Role>
>data : any