===================================================================
JsFile: all.js
mapUrl: all.js.map
sourceRoot: 
sources: tests/cases/compiler/ref/b.ts,tests/cases/compiler/ref/a.ts,tests/cases/compiler/b.ts
===================================================================
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:tests/cases/compiler/ref/b.ts
-------------------------------------------------------------------
>>>var __extends = (this && this.__extends) || (function () {
>>>    var extendStatics = function (d, b) {
>>>        extendStatics = Object.setPrototypeOf ||
>>>            ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
>>>            function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
>>>        return extendStatics(d, b);
>>>    };
>>>    return function (d, b) {
>>>        extendStatics(d, b);
>>>        function __() { this.constructor = d; }
>>>        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
>>>    };
>>>})();
>>>/// <reference path="./c.d.ts" />
1 >
2 >^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 >                                 ^^^^^^->
1 >
2 >/// <reference path="./c.d.ts" />
1 >Emitted(14, 1) Source(1, 1) + SourceIndex(0)
2 >Emitted(14, 34) Source(1, 34) + SourceIndex(0)
---
>>>var Foo = /** @class */ (function () {
1->
2 >^^^^^^^^^^^^^^^^^^^^^->
1->
  >
1->Emitted(15, 1) Source(2, 1) + SourceIndex(0)
---
>>>    function Foo() {
1->^^^^
2 >    ^^->
1->
1->Emitted(16, 5) Source(2, 1) + SourceIndex(0)
---
>>>    }
1->^^^^
2 >    ^
3 >     ^^^^^^^^^^^->
1->class Foo {
  >	member: Bar;
  >
2 >    }
1->Emitted(17, 5) Source(4, 1) + SourceIndex(0)
2 >Emitted(17, 6) Source(4, 2) + SourceIndex(0)
---
>>>    return Foo;
1->^^^^
2 >    ^^^^^^^^^^
1->
2 >    }
1->Emitted(18, 5) Source(4, 1) + SourceIndex(0)
2 >Emitted(18, 15) Source(4, 2) + SourceIndex(0)
---
>>>}());
1 >
2 >^
3 > 
4 > ^^^^
5 >     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
2 >}
3 > 
4 > class Foo {
  > 	member: Bar;
  > }
1 >Emitted(19, 1) Source(4, 1) + SourceIndex(0)
2 >Emitted(19, 2) Source(4, 2) + SourceIndex(0)
3 >Emitted(19, 2) Source(2, 1) + SourceIndex(0)
4 >Emitted(19, 6) Source(4, 2) + SourceIndex(0)
---
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:tests/cases/compiler/ref/a.ts
-------------------------------------------------------------------
>>>define("ref/a", ["require", "exports"], function (require, exports) {
>>>    "use strict";
>>>    Object.defineProperty(exports, "__esModule", { value: true });
>>>    /// <reference path="./b.ts" />
1->^^^^
2 >    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 >                                   ^^^^^^->
1->
2 >    /// <reference path="./b.ts" />
1->Emitted(23, 5) Source(1, 1) + SourceIndex(1)
2 >Emitted(23, 36) Source(1, 32) + SourceIndex(1)
---
>>>    var A = /** @class */ (function () {
1->^^^^
2 >    ^^^^^^^^^^^^^^^^^^^->
1->
  >
1->Emitted(24, 5) Source(2, 1) + SourceIndex(1)
---
>>>        function A() {
1->^^^^^^^^
2 >        ^^->
1->
1->Emitted(25, 9) Source(2, 1) + SourceIndex(1)
---
>>>        }
1->^^^^^^^^
2 >        ^
3 >         ^^^^^^^^^->
1->export class A {
  >	member: typeof GlobalFoo;
  >
2 >        }
1->Emitted(26, 9) Source(4, 1) + SourceIndex(1)
2 >Emitted(26, 10) Source(4, 2) + SourceIndex(1)
---
>>>        return A;
1->^^^^^^^^
2 >        ^^^^^^^^
1->
2 >        }
1->Emitted(27, 9) Source(4, 1) + SourceIndex(1)
2 >Emitted(27, 17) Source(4, 2) + SourceIndex(1)
---
>>>    }());
1 >^^^^
2 >    ^
3 >     
4 >     ^^^^
5 >         ^^^^^^^^^^->
1 >
2 >    }
3 >     
4 >     export class A {
  >     	member: typeof GlobalFoo;
  >     }
1 >Emitted(28, 5) Source(4, 1) + SourceIndex(1)
2 >Emitted(28, 6) Source(4, 2) + SourceIndex(1)
3 >Emitted(28, 6) Source(2, 1) + SourceIndex(1)
4 >Emitted(28, 10) Source(4, 2) + SourceIndex(1)
---
>>>    exports.A = A;
1->^^^^
2 >    ^^^^^^^^^^^^^^
1->
2 >    A
1->Emitted(29, 5) Source(2, 14) + SourceIndex(1)
2 >Emitted(29, 19) Source(2, 15) + SourceIndex(1)
---
-------------------------------------------------------------------
emittedFile:all.js
sourceFile:tests/cases/compiler/b.ts
-------------------------------------------------------------------
>>>});
>>>define("b", ["require", "exports", "ref/a"], function (require, exports, a_1) {
>>>    "use strict";
>>>    Object.defineProperty(exports, "__esModule", { value: true });
>>>    var B = /** @class */ (function (_super) {
1 >^^^^
2 >    ^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >import {A} from "./ref/a";
  >
1 >Emitted(34, 5) Source(2, 1) + SourceIndex(2)
---
>>>        __extends(B, _super);
1->^^^^^^^^
2 >        ^^^^^^^^^^^^^^^^^^^^^
1->export class B extends 
2 >        A
1->Emitted(35, 9) Source(2, 24) + SourceIndex(2)
2 >Emitted(35, 30) Source(2, 25) + SourceIndex(2)
---
>>>        function B() {
1 >^^^^^^^^
2 >        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^->
1 >
1 >Emitted(36, 9) Source(2, 1) + SourceIndex(2)
---
>>>            return _super !== null && _super.apply(this, arguments) || this;
>>>        }
1->^^^^^^^^
2 >        ^
3 >         ^^^^^^^^^->
1->export class B extends A { 
2 >        }
1->Emitted(38, 9) Source(2, 28) + SourceIndex(2)
2 >Emitted(38, 10) Source(2, 29) + SourceIndex(2)
---
>>>        return B;
1->^^^^^^^^
2 >        ^^^^^^^^
1->
2 >        }
1->Emitted(39, 9) Source(2, 28) + SourceIndex(2)
2 >Emitted(39, 17) Source(2, 29) + SourceIndex(2)
---
>>>    }(a_1.A));
1 >^^^^
2 >    ^
3 >     
4 >     ^
5 >      ^^^^^
6 >           ^^^
7 >              ^^^^^->
1 >
2 >    }
3 >     
4 >     export class B extends 
5 >      A
6 >            { }
1 >Emitted(40, 5) Source(2, 28) + SourceIndex(2)
2 >Emitted(40, 6) Source(2, 29) + SourceIndex(2)
3 >Emitted(40, 6) Source(2, 1) + SourceIndex(2)
4 >Emitted(40, 7) Source(2, 24) + SourceIndex(2)
5 >Emitted(40, 12) Source(2, 25) + SourceIndex(2)
6 >Emitted(40, 15) Source(2, 29) + SourceIndex(2)
---
>>>    exports.B = B;
1->^^^^
2 >    ^^^^^^^^^^^^^^
1->
2 >    B
1->Emitted(41, 5) Source(2, 14) + SourceIndex(2)
2 >Emitted(41, 19) Source(2, 15) + SourceIndex(2)
---
>>>});
>>>//# sourceMappingURL=all.js.map