From de1e965fecd5b0a73346f667699e1460ad781deb Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 20 May 2015 10:15:42 +0100 Subject: [PATCH] fix placement of for loop in es6.modules-system hoisting test --- .../es6.modules-system/hoist-function-exports/expected.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/fixtures/transformation/es6.modules-system/hoist-function-exports/expected.js b/test/core/fixtures/transformation/es6.modules-system/hoist-function-exports/expected.js index 015638ae6d..061ee66ceb 100644 --- a/test/core/fixtures/transformation/es6.modules-system/hoist-function-exports/expected.js +++ b/test/core/fixtures/transformation/es6.modules-system/hoist-function-exports/expected.js @@ -16,10 +16,10 @@ System.register(["./evens"], function (_export) { execute: function () { p = 5; - for (a in b) ; - _export("p", p); + for (a in b) ; + isOdd = (function (isEven) { return function (n) { return !isEven(n);