add member expression destructuring test

This commit is contained in:
Sebastian McKenzie
2014-10-28 13:16:21 +11:00
parent 4f5026101b
commit 4e248c0a16
2 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1 @@
[this.foo, this.bar] = [1, 2];

View File

@@ -0,0 +1,4 @@
"use strict";
var _ref = [1, 2];
this.foo = _ref[0];
this.bar = _ref[1];