Guy Bedford 40c4e7c2ea Modules systemjs system global name, use strict wrapping (#3482)
* modules systemjs system global name, use strict wrapping

* document systemGlobal option in readme
2016-05-16 16:46:06 -04:00

42 lines
668 B
JavaScript

System.register([], function (_export, _context) {
"use strict";
var test, a, b, d;
return {
setters: [],
execute: function () {
_export("test", test = 2);
_export("test", test);
_export("test", test = 5);
_export("test", test++);
(function () {
var test = 2;
test = 3;
test++;
})();
_export("a", a = 2);
_export("a", a);
_export("a", a = 3);
_export("c", b = 2);
_export("c", b);
_export("c", b = 3);
_export("f", _export("e", d = 3));
_export("e", d);
_export("f", d);
_export("f", _export("e", d = 4));
}
};
});