From b6007ce4ea61f47e6a7461350afa8f660842c5e2 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Tue, 21 Jul 2015 02:16:03 +0100 Subject: [PATCH] remove comments form test --- .../es6.destructuring/array-unpack-optimisation/actual.js | 2 -- .../es6.destructuring/array-unpack-optimisation/expected.js | 3 --- 2 files changed, 5 deletions(-) diff --git a/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/actual.js b/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/actual.js index 6617aa5797..0d02d7f7ba 100644 --- a/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/actual.js +++ b/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/actual.js @@ -1,10 +1,8 @@ -// opt var [a, b] = [1, 2]; var [[a, b]] = [[1, 2]]; var [a, b, ...c] = [1, 2, 3, 4]; var [[a, b, ...c]] = [[1, 2, 3, 4]]; -// deopt var [a, b] = [1, 2, 3]; var [[a, b]] = [[1, 2, 3]]; var [a, b] = [a, b]; diff --git a/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/expected.js b/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/expected.js index 50626ce5a3..c1b094bd2c 100644 --- a/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/expected.js +++ b/packages/babel/test/fixtures/transformation/es6.destructuring/array-unpack-optimisation/expected.js @@ -1,4 +1,3 @@ -// opt "use strict"; var a = 1; @@ -11,8 +10,6 @@ var c = [3, 4]; var a = 1; var b = 2; var c = [3, 4]; - -// deopt var _ref = [1, 2, 3]; var a = _ref[0]; var b = _ref[1];