diff --git a/test/fixtures/transformation/es6-modules-system/exports-from/expected.js b/test/fixtures/transformation/es6-modules-system/exports-from/expected.js index 6c42c5ca33..47083a27f1 100644 --- a/test/fixtures/transformation/es6-modules-system/exports-from/expected.js +++ b/test/fixtures/transformation/es6-modules-system/exports-from/expected.js @@ -3,14 +3,10 @@ System.register(["foo"], function (_export) { return { setters: [function (m) { _foo = m - }], - execute: function () { - "use strict"; for (var i in _foo) { _export(i, _foo[i]) } - _export("foo", _foo.foo); _export("foo", _foo.foo); @@ -24,6 +20,10 @@ System.register(["foo"], function (_export) { _export("default", _foo.foo); _export("bar", _foo.bar); + + }], + execute: function () { + "use strict"; } }; });