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
|
===================================================================
JsFile: sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.js
mapUrl: sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.js.map
sourceRoot:
sources: sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.js
sourceFile:sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.ts
-------------------------------------------------------------------
>>>var _a = { x: 20 }.x, x = _a === void 0 ? 500 : _a;
1 >
2 >^^^^
3 > ^^^^^^^^^^^^^^^^
4 > ^^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 > ^
7 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
>var {
2 >
3 > x = 500
4 >
5 > x = 500
6 > } = { x: 20 };
1 >Emitted(1, 1) Source(2, 6) + SourceIndex(0)
2 >Emitted(1, 5) Source(2, 6) + SourceIndex(0)
3 >Emitted(1, 21) Source(2, 13) + SourceIndex(0)
4 >Emitted(1, 23) Source(2, 6) + SourceIndex(0)
5 >Emitted(1, 51) Source(2, 13) + SourceIndex(0)
6 >Emitted(1, 52) Source(2, 27) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationDestructuringVariableStatementObjectBindingPattern3.js.map
|