Bones/node_modules/systemjs/test/tests/all-layers3.js

18 lines
301 B
JavaScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
System.register(["./all-layers2.js", "./all-layers4.js"], function($__export) {
"use strict";
var c, p;
return {
setters: [
function(m) {
p = m.p;
},
function(m) {
$__export('c', c = m.c);
}
],
execute: function() {
p();
}
};
});