===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot: 
sources: ref/a.ts,b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:ref/a.ts
-------------------------------------------------------------------
>>>System.register("ref/a", [], function (exports_1, context_1) {
>>>    "use strict";
>>>    var A;
>>>    var __moduleName = context_1 && context_1.id;
>>>    return {
>>>        setters: [],
>>>        execute: function () {
>>>            A = class A {
1 >^^^^^^^^^^^^
2 >            ^^^^
3 >                ^^^^^^
4 >                      ^
1 >
2 >            
3 >                export class 
4 >                      A
1 >Emitted(8, 13) Source(1, 1) + SourceIndex(0)
2 >Emitted(8, 17) Source(1, 1) + SourceIndex(0)
3 >Emitted(8, 23) Source(1, 14) + SourceIndex(0)
4 >Emitted(8, 24) Source(1, 15) + SourceIndex(0)
---
>>>            };
1 >^^^^^^^^^^^^^
2 >             ^
3 >              ^^^^^^^^^^^^^^^^^->
1 > { }
2 >             
1 >Emitted(9, 14) Source(1, 19) + SourceIndex(0)
2 >Emitted(9, 15) Source(1, 19) + SourceIndex(0)
---
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:b.ts
-------------------------------------------------------------------
>>>            exports_1("A", A);
>>>        }
>>>    };
>>>});
>>>System.register("b", ["ref/a"], function (exports_2, context_2) {
>>>    "use strict";
>>>    var a_1, B;
>>>    var __moduleName = context_2 && context_2.id;
>>>    return {
>>>        setters: [
>>>            function (a_1_1) {
>>>                a_1 = a_1_1;
>>>            }
>>>        ],
>>>        execute: function () {
>>>            B = class B extends a_1.A {
1->^^^^^^^^^^^^
2 >            ^^^^
3 >                ^^^^^^
4 >                      ^
5 >                       ^^^^^^^^^
6 >                                ^^^^^
1->import {A} from "./ref/a";
  >
2 >            
3 >                export class 
4 >                      B 
5 >                       extends 
6 >                                A
1->Emitted(25, 13) Source(2, 1) + SourceIndex(1)
2 >Emitted(25, 17) Source(2, 1) + SourceIndex(1)
3 >Emitted(25, 23) Source(2, 14) + SourceIndex(1)
4 >Emitted(25, 24) Source(2, 16) + SourceIndex(1)
5 >Emitted(25, 33) Source(2, 24) + SourceIndex(1)
6 >Emitted(25, 38) Source(2, 25) + SourceIndex(1)
---
>>>            };
1 >^^^^^^^^^^^^^
2 >             ^
3 >              ^^^^^^^^^^^^^^^^^->
1 > { }
2 >             
1 >Emitted(26, 14) Source(2, 29) + SourceIndex(1)
2 >Emitted(26, 15) Source(2, 29) + SourceIndex(1)
---
>>>            exports_2("B", B);
>>>        }
>>>    };
>>>});
>>>//# sourceMappingURL=all.js.map