2014-11-24 10:19:06 +11:00

36 lines
562 B
JavaScript

System.register("actual", [], function (_export) {
"use strict";
var __moduleName = "actual";
var foo = 1;
var foo2 = function () {};
var foo3;
var foo4 = 2;
var foo5;
var foo6 = 3;
function foo7() {}
var foo8 = function foo8() {};
return {
setters: [],
execute: function () {
_export("foo", foo);
_export("foo2", foo2);
_export("foo3", foo3);
_export("foo4", foo4);
_export("foo5", foo5);
_export("foo6", foo6);
_export("foo7", foo7);
_export("foo8", foo8);
}
};
});