fix system modules exports from test
This commit is contained in:
parent
f4e516e8ce
commit
4fd007948c
@ -1,28 +1,29 @@
|
|||||||
System.register("es6-modules-system/exports-from/expected", ["foo"], function (_export) {
|
System.register("es6-modules-system/exports-from/expected", ["foo"], function (_export) {
|
||||||
"use strict";
|
var _foo;
|
||||||
|
|
||||||
var __moduleName = "es6-modules-system/exports-from/expected";
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
setters: [function (m) {
|
setters: [function (m) {
|
||||||
for (var i in m) {
|
_foo = m
|
||||||
_export(i, m[i]);
|
}],
|
||||||
|
execute: function () {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
for (var i in _foo) {
|
||||||
|
_export(i, _foo[i])
|
||||||
}
|
}
|
||||||
|
|
||||||
_export("foo", m.foo);
|
_export("foo", _foo.foo);
|
||||||
|
|
||||||
_export("foo", m.foo);
|
_export("foo", _foo.foo);
|
||||||
|
|
||||||
_export("bar", m.bar);
|
_export("bar", _foo.bar);
|
||||||
|
|
||||||
_export("bar", m.foo);
|
_export("bar", _foo.foo);
|
||||||
|
|
||||||
_export("default", m.foo);
|
_export("default", _foo.foo);
|
||||||
|
|
||||||
_export("default", m.foo);
|
_export("default", _foo.foo);
|
||||||
|
|
||||||
_export("bar", m.bar);
|
_export("bar", _foo.bar);
|
||||||
}],
|
}
|
||||||
execute: function () {}
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user