File: sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.sourcemap.txt

package info (click to toggle)
node-typescript 2.1.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 203,960 kB
  • sloc: sh: 11; makefile: 5
file content (55 lines) | stat: -rw-r--r-- 2,335 bytes parent folder | download | duplicates (2)
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
===================================================================
JsFile: sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.js
mapUrl: sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.js.map
sourceRoot: 
sources: sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.js
sourceFile:sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.ts
-------------------------------------------------------------------
>>>var x = { x: 20 }.x;
1 >
2 >^^^^
3 >    ^^^^^^^^^^^^^^^
4 >                   ^
5 >                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
  >var {
2 >
3 >    x
4 >                   } = { x: 20 };
1 >Emitted(1, 1) Source(2, 6) + SourceIndex(0)
2 >Emitted(1, 5) Source(2, 6) + SourceIndex(0)
3 >Emitted(1, 20) Source(2, 7) + SourceIndex(0)
4 >Emitted(1, 21) Source(2, 21) + SourceIndex(0)
---
>>>var _a = { a: 30, b: 40 }, a = _a.a, b = _a.b;
1->
2 >^^^^
3 >    ^^^^^^^^^^^^^^^^^^^^^
4 >                         ^^
5 >                           ^^^^^^^^
6 >                                   ^^
7 >                                     ^^^^^^^^
8 >                                             ^
9 >                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1->
  >var 
2 >
3 >    { a, b } = { a: 30, b: 40 }
4 >                         
5 >                           a
6 >                                   , 
7 >                                     b
8 >                                              } = { a: 30, b: 40 };
1->Emitted(2, 1) Source(3, 5) + SourceIndex(0)
2 >Emitted(2, 5) Source(3, 5) + SourceIndex(0)
3 >Emitted(2, 26) Source(3, 32) + SourceIndex(0)
4 >Emitted(2, 28) Source(3, 7) + SourceIndex(0)
5 >Emitted(2, 36) Source(3, 8) + SourceIndex(0)
6 >Emitted(2, 38) Source(3, 10) + SourceIndex(0)
7 >Emitted(2, 46) Source(3, 11) + SourceIndex(0)
8 >Emitted(2, 47) Source(3, 33) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringVariableStatementObjectBindingPattern2.js.map