TypeScript/tests/baselines/reference/systemModule2.js

16 lines
241 B
TypeScript
Raw Normal View History

2015-04-11 17:50:11 +02:00
//// [systemModule2.ts]
var x = 1;
export = x;
//// [systemModule2.js]
System.register([], function(exports_1) {
var x;
return {
setters:[],
execute: function() {
x = 1;
}
}
});