20 lines
330 B
JavaScript
20 lines
330 B
JavaScript
System.register([], function (_export) {
|
|
"use strict";
|
|
|
|
var test;
|
|
return {
|
|
setters: [],
|
|
execute: function () {
|
|
test = _export("test", 2);
|
|
_export("test", test = 5);
|
|
_export("test", test += 1);
|
|
|
|
(function () {
|
|
var test = 2;
|
|
test = 3;
|
|
test++;
|
|
})();
|
|
}
|
|
};
|
|
});
|