TypeScript/tests/baselines/reference/systemExportAssignment2.js
2016-03-22 15:43:43 -07:00

34 lines
676 B
TypeScript

//// [tests/cases/compiler/systemExportAssignment2.ts] ////
//// [a.ts]
var a = 10;
export = a; // Error: export = not allowed in ES6
//// [b.ts]
import * as a from "a";
//// [a.js]
System.register([], function (exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
var a;
return {
setters: [],
execute: function () {
a = 10;
}
};
});
//// [b.js]
System.register([], function (exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
return {
setters: [],
execute: function () {
}
};
});