Bones/node_modules/systemjs/test/tests/group-test.js

35 lines
698 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
"format register";
System.register("group-c", [], function($__export) {
"use strict";
var __moduleName = "group-c";
return {
setters: [],
execute: function() {
$__export('default', 'bar');
}
};
});
System.registerDynamic("group-b", ["group-c"], false, function(__require, __exports, __module) {
var _retrieveGlobal = System.get("@@global-helpers").prepareGlobal(__module.id);
(function() {
this.foo = 'foo';
}).call(System.global);
return _retrieveGlobal();
});
System.register("group-a", ["./group-b"], function($__export) {
"use strict";
var __moduleName = "group-a";
return {
setters: [function(m) {}],
execute: function() {}
};
});