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
|
===================================================================
JsFile: sourceMapValidationClassWithDefaultConstructor.js
mapUrl: sourceMapValidationClassWithDefaultConstructor.js.map
sourceRoot:
sources: sourceMapValidationClassWithDefaultConstructor.ts
===================================================================
-------------------------------------------------------------------
emittedFile:tests/cases/compiler/sourceMapValidationClassWithDefaultConstructor.js
sourceFile:sourceMapValidationClassWithDefaultConstructor.ts
-------------------------------------------------------------------
>>>var Greeter = /** @class */ (function () {
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(1, 1) Source(1, 1) + SourceIndex(0)
---
>>> function Greeter() {
1->^^^^
2 > ^^^^^^^^^^^^^^^^^->
1->
1->Emitted(2, 5) Source(1, 1) + SourceIndex(0)
---
>>> this.a = 10;
1->^^^^^^^^
2 > ^^^^^^
3 > ^^^
4 > ^^
5 > ^
6 > ^^^^^^^^->
1->class Greeter {
> public
2 > a
3 > =
4 > 10
5 > ;
1->Emitted(3, 9) Source(2, 12) + SourceIndex(0)
2 >Emitted(3, 15) Source(2, 13) + SourceIndex(0)
3 >Emitted(3, 18) Source(2, 16) + SourceIndex(0)
4 >Emitted(3, 20) Source(2, 18) + SourceIndex(0)
5 >Emitted(3, 21) Source(2, 19) + SourceIndex(0)
---
>>> this.nameA = "Ten";
1->^^^^^^^^
2 > ^^^^^^^^^^
3 > ^^^
4 > ^^^^^
5 > ^
1->
> public
2 > nameA
3 > =
4 > "Ten"
5 > ;
1->Emitted(4, 9) Source(3, 12) + SourceIndex(0)
2 >Emitted(4, 19) Source(3, 17) + SourceIndex(0)
3 >Emitted(4, 22) Source(3, 20) + SourceIndex(0)
4 >Emitted(4, 27) Source(3, 25) + SourceIndex(0)
5 >Emitted(4, 28) Source(3, 26) + SourceIndex(0)
---
>>> }
1 >^^^^
2 > ^
3 > ^^^^^^^^^^^^^^^->
1 >
>
2 > }
1 >Emitted(5, 5) Source(4, 1) + SourceIndex(0)
2 >Emitted(5, 6) Source(4, 2) + SourceIndex(0)
---
>>> return Greeter;
1->^^^^
2 > ^^^^^^^^^^^^^^
1->
2 > }
1->Emitted(6, 5) Source(4, 1) + SourceIndex(0)
2 >Emitted(6, 19) Source(4, 2) + SourceIndex(0)
---
>>>}());
1 >
2 >^
3 >
4 > ^^^^
5 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 >
4 > class Greeter {
> public a = 10;
> public nameA = "Ten";
> }
1 >Emitted(7, 1) Source(4, 1) + SourceIndex(0)
2 >Emitted(7, 2) Source(4, 2) + SourceIndex(0)
3 >Emitted(7, 2) Source(1, 1) + SourceIndex(0)
4 >Emitted(7, 6) Source(4, 2) + SourceIndex(0)
---
>>>//# sourceMappingURL=sourceMapValidationClassWithDefaultConstructor.js.map
|