remove comments form test

This commit is contained in:
Sebastian McKenzie 2015-07-21 02:16:03 +01:00
parent 0a5a00d6f8
commit b6007ce4ea
2 changed files with 0 additions and 5 deletions

View File

@ -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];

View File

@ -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];