===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot: 
sources: ref/a.ts,b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:ref/a.ts
-------------------------------------------------------------------
>>>define("ref/a", ["require", "exports"], function (require, exports) {
>>>    "use strict";
>>>    Object.defineProperty(exports, "__esModule", { value: true });
>>>    exports.A = void 0;
>>>    class A {
1 >^^^^
2 >    ^^^^^^
3 >          ^
1 >
2 >    export class 
3 >          A
1 >Emitted(5, 5) Source(1, 1) + SourceIndex(0)
2 >Emitted(5, 11) Source(1, 14) + SourceIndex(0)
3 >Emitted(5, 12) Source(1, 15) + SourceIndex(0)
---
>>>    }
1 >^^^^^
2 >     ^^^^^^^^^^^^^^->
1 > { }
1 >Emitted(6, 6) Source(1, 19) + SourceIndex(0)
---
>>>    exports.A = A;
1->^^^^
2 >    ^^^^^^^^^^^^^^
1->
2 >    export class A { }
1->Emitted(7, 5) Source(1, 1) + SourceIndex(0)
2 >Emitted(7, 19) Source(1, 19) + SourceIndex(0)
---
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>});
>>>define("b", ["require", "exports", "ref/a"], function (require, exports, a_1) {
>>>    "use strict";
>>>    Object.defineProperty(exports, "__esModule", { value: true });
>>>    exports.B = void 0;
>>>    class B extends a_1.A {
1 >^^^^
2 >    ^^^^^^
3 >          ^
4 >           ^^^^^^^^^
5 >                    ^^^^^
1 >import {A} from "./ref/a";
  >
2 >    export class 
3 >          B 
4 >           extends 
5 >                    A
1 >Emitted(13, 5) Source(2, 1) + SourceIndex(1)
2 >Emitted(13, 11) Source(2, 14) + SourceIndex(1)
3 >Emitted(13, 12) Source(2, 16) + SourceIndex(1)
4 >Emitted(13, 21) Source(2, 24) + SourceIndex(1)
5 >Emitted(13, 26) Source(2, 25) + SourceIndex(1)
---
>>>    }
1 >^^^^^
2 >     ^^^^^^^^^^^^^^->
1 > { }
1 >Emitted(14, 6) Source(2, 29) + SourceIndex(1)
---
>>>    exports.B = B;
1->^^^^
2 >    ^^^^^^^^^^^^^^
1->
2 >    export class B extends A { }
1->Emitted(15, 5) Source(2, 1) + SourceIndex(1)
2 >Emitted(15, 19) Source(2, 29) + SourceIndex(1)
---
>>>});
>>>//# sourceMappingURL=all.js.map