2016-07-26 18:06:42 -04:00

21 lines
238 B
JavaScript

System.register([], function (_export, _context) {
"use strict";
function a() {
alert("a");
}
_export("a", a);
function b() {
a();
}
return {
setters: [],
execute: function () {
b();
}
};
});