TypeScript/tests/baselines/reference/outModuleConcatSystem.js
2016-04-12 16:21:27 -07:00

67 lines
1.6 KiB
TypeScript

//// [tests/cases/compiler/outModuleConcatSystem.ts] ////
//// [a.ts]
export class A { }
//// [b.ts]
import {A} from "./ref/a";
export class B extends A { }
//// [all.js]
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
System.register("ref/a", [], function (exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
var A;
return {
setters: [],
execute: function () {
A = (function () {
function A() {
}
return A;
}());
exports_1("A", A);
}
};
});
System.register("b", ["ref/a"], function (exports_2, context_2) {
"use strict";
var __moduleName = context_2 && context_2.id;
var a_1, B;
return {
setters: [
function (a_1_1) {
a_1 = a_1_1;
}
],
execute: function () {
B = (function (_super) {
__extends(B, _super);
function B() {
_super.apply(this, arguments);
}
return B;
}(a_1.A));
exports_2("B", B);
}
};
});
//# sourceMappingURL=all.js.map
//// [all.d.ts]
declare module "ref/a" {
export class A {
}
}
declare module "b" {
import { A } from "ref/a";
export class B extends A {
}
}