File: sourceMapValidationFunctionExpressions.sourcemap.txt

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 (156 lines) | stat: -rw-r--r-- 4,884 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
===================================================================
JsFile: sourceMapValidationFunctionExpressions.js
mapUrl: sourceMapValidationFunctionExpressions.js.map
sourceRoot: 
sources: sourceMapValidationFunctionExpressions.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationFunctionExpressions.js
sourceFile:sourceMapValidationFunctionExpressions.ts
-------------------------------------------------------------------
>>>var greetings = 0;
1 >
2 >^^^^
3 >    ^^^^^^^^^
4 >             ^^^
5 >                ^
6 >                 ^
7 >                  ^^^^^^^^^^^^^^^^->
1 >
2 >var 
3 >    greetings
4 >              = 
5 >                0
6 >                 ;
1 >Emitted(1, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(1, 5) Source(1, 5) + SourceIndex(0)
3 >Emitted(1, 14) Source(1, 14) + SourceIndex(0)
4 >Emitted(1, 17) Source(1, 17) + SourceIndex(0)
5 >Emitted(1, 18) Source(1, 18) + SourceIndex(0)
6 >Emitted(1, 19) Source(1, 19) + SourceIndex(0)
---
>>>var greet = function (greeting) {
1->
2 >^^^^
3 >    ^^^^^
4 >         ^^^
5 >            ^^^^^^^^^^
6 >                      ^^^^^^^^
1->
  >
2 >var 
3 >    greet
4 >          = 
5 >            (
6 >                      greeting: string
1->Emitted(2, 1) Source(2, 1) + SourceIndex(0)
2 >Emitted(2, 5) Source(2, 5) + SourceIndex(0)
3 >Emitted(2, 10) Source(2, 10) + SourceIndex(0)
4 >Emitted(2, 13) Source(2, 13) + SourceIndex(0)
5 >Emitted(2, 23) Source(2, 14) + SourceIndex(0)
6 >Emitted(2, 31) Source(2, 30) + SourceIndex(0)
---
>>>    greetings++;
1 >^^^^
2 >    ^^^^^^^^^
3 >             ^^
4 >               ^
5 >                ^^^^^^->
1 >): number => {
  >    
2 >    greetings
3 >             ++
4 >               ;
1 >Emitted(3, 5) Source(3, 5) + SourceIndex(0)
2 >Emitted(3, 14) Source(3, 14) + SourceIndex(0)
3 >Emitted(3, 16) Source(3, 16) + SourceIndex(0)
4 >Emitted(3, 17) Source(3, 17) + SourceIndex(0)
---
>>>    return greetings;
1->^^^^
2 >    ^^^^^^^
3 >           ^^^^^^^^^
4 >                    ^
1->
  >    
2 >    return 
3 >           greetings
4 >                    ;
1->Emitted(4, 5) Source(4, 5) + SourceIndex(0)
2 >Emitted(4, 12) Source(4, 12) + SourceIndex(0)
3 >Emitted(4, 21) Source(4, 21) + SourceIndex(0)
4 >Emitted(4, 22) Source(4, 22) + SourceIndex(0)
---
>>>};
1 >
2 >^
3 > ^
4 >  ^^^^^^^^^^^^^^->
1 >
  >
2 >}
3 > 
1 >Emitted(5, 1) Source(5, 1) + SourceIndex(0)
2 >Emitted(5, 2) Source(5, 2) + SourceIndex(0)
3 >Emitted(5, 3) Source(5, 2) + SourceIndex(0)
---
>>>greet("Hello");
1->
2 >^^^^^
3 >     ^
4 >      ^^^^^^^
5 >             ^
6 >              ^
7 >               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
  >
2 >greet
3 >     (
4 >      "Hello"
5 >             )
6 >              ;
1->Emitted(6, 1) Source(6, 1) + SourceIndex(0)
2 >Emitted(6, 6) Source(6, 6) + SourceIndex(0)
3 >Emitted(6, 7) Source(6, 7) + SourceIndex(0)
4 >Emitted(6, 14) Source(6, 14) + SourceIndex(0)
5 >Emitted(6, 15) Source(6, 15) + SourceIndex(0)
6 >Emitted(6, 16) Source(6, 16) + SourceIndex(0)
---
>>>var incrGreetings = function () { return greetings++; };
1->
2 >^^^^
3 >    ^^^^^^^^^^^^^
4 >                 ^^^
5 >                    ^^^^^^^^^^^^^^
6 >                                  ^^^^^^^
7 >                                         ^^^^^^^^^
8 >                                                  ^^
9 >                                                    ^^
10>                                                      ^
11>                                                       ^
12>                                                        ^^^^^^^^^->
1->
  >
2 >var 
3 >    incrGreetings
4 >                  = 
5 >                    () => 
6 >                                  
7 >                                         greetings
8 >                                                  ++
9 >                                                    
10>                                                      greetings++
11>                                                       ;
1->Emitted(7, 1) Source(7, 1) + SourceIndex(0)
2 >Emitted(7, 5) Source(7, 5) + SourceIndex(0)
3 >Emitted(7, 18) Source(7, 18) + SourceIndex(0)
4 >Emitted(7, 21) Source(7, 21) + SourceIndex(0)
5 >Emitted(7, 35) Source(7, 27) + SourceIndex(0)
6 >Emitted(7, 42) Source(7, 27) + SourceIndex(0)
7 >Emitted(7, 51) Source(7, 36) + SourceIndex(0)
8 >Emitted(7, 53) Source(7, 38) + SourceIndex(0)
9 >Emitted(7, 55) Source(7, 27) + SourceIndex(0)
10>Emitted(7, 56) Source(7, 38) + SourceIndex(0)
11>Emitted(7, 57) Source(7, 39) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationFunctionExpressions.js.map