remove invalid ObjectPattern destructuring assignment

This commit is contained in:
Sebastian McKenzie
2014-11-10 00:18:01 +11:00
parent 9989b89b92
commit 7adc919bb6
4 changed files with 6 additions and 24 deletions

View File

@@ -1,2 +1 @@
[a, b] = f();
({ x }) = e();

View File

@@ -4,6 +4,3 @@ var _ref = f();
a = _ref[0];
b = _ref[1];
var _ref2 = e();
x = _ref2.x;