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) {
|
||||
"use strict";
|
||||
|
||||
var __moduleName = "es6-modules-system/exports-from/expected";
|
||||
|
||||
var _foo;
|
||||
return {
|
||||
setters: [function (m) {
|
||||
for (var i in m) {
|
||||
_export(i, m[i]);
|
||||
_foo = m
|
||||
}],
|
||||
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);
|
||||
}],
|
||||
execute: function () {}
|
||||
_export("bar", _foo.bar);
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user