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
|
===================================================================
JsFile: sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.js
mapUrl: sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.js.map
sourceRoot:
sources: sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.js
sourceFile:sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.ts
-------------------------------------------------------------------
>>>var _a = { x: 20, y: "hi" }, _b = _a.x, x = _b === void 0 ? 500 : _b, y = _a.y;
1 >
2 >^^^^
3 > ^^^^^^^^^^^^^^^^^^^^^^^
4 > ^^
5 > ^^^^^^^^^
6 > ^^
7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8 > ^^
9 > ^^^^^^^^
10> ^
11> ^^^^^^^^^^^^^^^^^^->
1 >var
2 >
3 > {x = 500,
> y} = { x: 20, y: "hi" }
4 >
5 > x = 500
6 >
7 > x = 500
8 > ,
>
9 > y} = { x: 20, y: "hi" }
10> ;
1 >Emitted(1, 1) Source(1, 5) + SourceIndex(0)
2 >Emitted(1, 5) Source(1, 5) + SourceIndex(0)
3 >Emitted(1, 28) Source(2, 29) + SourceIndex(0)
4 >Emitted(1, 30) Source(1, 6) + SourceIndex(0)
5 >Emitted(1, 39) Source(1, 13) + SourceIndex(0)
6 >Emitted(1, 41) Source(1, 6) + SourceIndex(0)
7 >Emitted(1, 69) Source(1, 13) + SourceIndex(0)
8 >Emitted(1, 71) Source(2, 6) + SourceIndex(0)
9 >Emitted(1, 79) Source(2, 29) + SourceIndex(0)
10>Emitted(1, 80) Source(2, 30) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringVariableStatementObjectBindingPattern4.js.map
|