add AssignmentExpression ObjectPattern test

This commit is contained in:
Sebastian McKenzie 2014-11-09 22:10:43 +11:00
parent a5f00aa3f6
commit 227d51a556
2 changed files with 4 additions and 0 deletions

View File

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

View File

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