File: fatarrowfunctions.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 (167 lines) | stat: -rw-r--r-- 6,754 bytes parent folder | download | duplicates (5)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
=== tests/cases/compiler/fatarrowfunctions.ts ===
function foo(x:any) {
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 0, 13))

	return x();
>x : Symbol(x, Decl(fatarrowfunctions.ts, 0, 13))
}


foo((x:number,y,z)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 5, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 5, 14))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 5, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 5, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 5, 14))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 5, 16))

foo((x,y,z)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 6, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 6, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 6, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 6, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 6, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 6, 9))

foo((x,y:number,z)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 7, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 7, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 7, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 7, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 7, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 7, 16))

foo((x,y:number,z:number)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 8, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 8, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 8, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 8, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 8, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 8, 16))

foo((x,y,z:number)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 9, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 9, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 9, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 9, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 9, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 9, 9))

foo(()=>{return 0;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))

foo((x:number,y,z)=>x+y+z);
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 12, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 12, 14))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 12, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 12, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 12, 14))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 12, 16))

foo((x,y,z)=>x+y+z);
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 13, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 13, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 13, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 13, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 13, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 13, 9))

foo((x,y:number,z)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 14, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 14, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 14, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 14, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 14, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 14, 16))

foo((x,y:number,z:number)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 15, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 15, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 15, 16))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 15, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 15, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 15, 16))

foo((x,y,z:number)=>{return x+y+z;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 16, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 16, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 16, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 16, 5))
>y : Symbol(y, Decl(fatarrowfunctions.ts, 16, 7))
>z : Symbol(z, Decl(fatarrowfunctions.ts, 16, 9))

foo(()=>{return 0;});
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))


foo(((x) => x));
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 20, 6))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 20, 6))

foo(x => x*x);
>foo : Symbol(foo, Decl(fatarrowfunctions.ts, 0, 0))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 22, 4))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 22, 4))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 22, 4))

var y = x => x*x;
>y : Symbol(y, Decl(fatarrowfunctions.ts, 24, 3))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 24, 7))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 24, 7))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 24, 7))

var z = (x:number) => x*x;
>z : Symbol(z, Decl(fatarrowfunctions.ts, 25, 3))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 25, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 25, 9))
>x : Symbol(x, Decl(fatarrowfunctions.ts, 25, 9))

var w = () => 3;
>w : Symbol(w, Decl(fatarrowfunctions.ts, 27, 3))

function ternaryTest(isWhile:boolean) {
>ternaryTest : Symbol(ternaryTest, Decl(fatarrowfunctions.ts, 27, 16))
>isWhile : Symbol(isWhile, Decl(fatarrowfunctions.ts, 29, 21))

                var f = isWhile ? function (n) { return n > 0; } : function (n) { return n === 0; };
>f : Symbol(f, Decl(fatarrowfunctions.ts, 31, 19))
>isWhile : Symbol(isWhile, Decl(fatarrowfunctions.ts, 29, 21))
>n : Symbol(n, Decl(fatarrowfunctions.ts, 31, 44))
>n : Symbol(n, Decl(fatarrowfunctions.ts, 31, 44))
>n : Symbol(n, Decl(fatarrowfunctions.ts, 31, 77))
>n : Symbol(n, Decl(fatarrowfunctions.ts, 31, 77))

}

declare function setTimeout(expression: any, msec?: number, language?: any): number;
>setTimeout : Symbol(setTimeout, Decl(lib.dom.d.ts, --, --), Decl(fatarrowfunctions.ts, 33, 1))
>expression : Symbol(expression, Decl(fatarrowfunctions.ts, 35, 28))
>msec : Symbol(msec, Decl(fatarrowfunctions.ts, 35, 44))
>language : Symbol(language, Decl(fatarrowfunctions.ts, 35, 59))

var messenger = {
>messenger : Symbol(messenger, Decl(fatarrowfunctions.ts, 37, 3))

    message: "Hello World",
>message : Symbol(message, Decl(fatarrowfunctions.ts, 37, 17))

    start: function() {
>start : Symbol(start, Decl(fatarrowfunctions.ts, 38, 27))

        setTimeout(() => { this.message.toString(); }, 3000);
>setTimeout : Symbol(setTimeout, Decl(lib.dom.d.ts, --, --), Decl(fatarrowfunctions.ts, 33, 1))
    }
};