File: reorderProperties.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (56 lines) | stat: -rw-r--r-- 1,893 bytes parent folder | download | duplicates (7)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
=== tests/cases/compiler/reorderProperties.ts ===
interface A<T> {
>A : Symbol(A, Decl(reorderProperties.ts, 0, 0))
>T : Symbol(T, Decl(reorderProperties.ts, 0, 12))

    x: T
>x : Symbol(A.x, Decl(reorderProperties.ts, 0, 16))
>T : Symbol(T, Decl(reorderProperties.ts, 0, 12))
}

interface B<T> {
>B : Symbol(B, Decl(reorderProperties.ts, 2, 1))
>T : Symbol(T, Decl(reorderProperties.ts, 4, 12))

    x: T
>x : Symbol(B.x, Decl(reorderProperties.ts, 4, 16))
>T : Symbol(T, Decl(reorderProperties.ts, 4, 12))
}

interface C<S> extends A<D<S>> {
>C : Symbol(C, Decl(reorderProperties.ts, 6, 1))
>S : Symbol(S, Decl(reorderProperties.ts, 8, 12))
>A : Symbol(A, Decl(reorderProperties.ts, 0, 0))
>D : Symbol(D, Decl(reorderProperties.ts, 10, 1))
>S : Symbol(S, Decl(reorderProperties.ts, 8, 12))

    y: S
>y : Symbol(C.y, Decl(reorderProperties.ts, 8, 32))
>S : Symbol(S, Decl(reorderProperties.ts, 8, 12))
}

interface D<S> extends B<C<S>> {
>D : Symbol(D, Decl(reorderProperties.ts, 10, 1))
>S : Symbol(S, Decl(reorderProperties.ts, 12, 12))
>B : Symbol(B, Decl(reorderProperties.ts, 2, 1))
>C : Symbol(C, Decl(reorderProperties.ts, 6, 1))
>S : Symbol(S, Decl(reorderProperties.ts, 12, 12))

    y: S
>y : Symbol(D.y, Decl(reorderProperties.ts, 12, 32))
>S : Symbol(S, Decl(reorderProperties.ts, 12, 12))
}

var c: C<{ s: string; n: number }>
>c : Symbol(c, Decl(reorderProperties.ts, 16, 3))
>C : Symbol(C, Decl(reorderProperties.ts, 6, 1))
>s : Symbol(s, Decl(reorderProperties.ts, 16, 10))
>n : Symbol(n, Decl(reorderProperties.ts, 16, 21))

var d: D<{ n: number; s: string }> = c
>d : Symbol(d, Decl(reorderProperties.ts, 17, 3))
>D : Symbol(D, Decl(reorderProperties.ts, 10, 1))
>n : Symbol(n, Decl(reorderProperties.ts, 17, 10))
>s : Symbol(s, Decl(reorderProperties.ts, 17, 21))
>c : Symbol(c, Decl(reorderProperties.ts, 16, 3))