diff --git a/test/fixtures/transformation/es6-destructuring/member-expression/expected.js b/test/fixtures/transformation/es6-destructuring/member-expression/expected.js index bb06a8b3a2..a61a5b6377 100644 --- a/test/fixtures/transformation/es6-destructuring/member-expression/expected.js +++ b/test/fixtures/transformation/es6-destructuring/member-expression/expected.js @@ -2,3 +2,5 @@ foo.foo = 1; foo.bar = 2; + +; diff --git a/test/fixtures/transformation/es6-properties.computed-loose/method/expected.js b/test/fixtures/transformation/es6-properties.computed-loose/method/expected.js index fd5025bbd1..5ddd0c37d4 100644 --- a/test/fixtures/transformation/es6-properties.computed-loose/method/expected.js +++ b/test/fixtures/transformation/es6-properties.computed-loose/method/expected.js @@ -1,11 +1,7 @@ "use strict"; -var obj = (function () { - var _obj = {}; +var _obj; - _obj[foobar] = function () { - return "foobar"; - }; - - return _obj; -})(); +var obj = (_obj = {}, _obj[foobar] = function () { + return "foobar"; +}, _obj);