Fix rest parameters with array and objects (#424)

* Fix rest parameters with array and objects

* Add test for array rest  with object

* reuse parseBindingIdentifier
This commit is contained in:
Brian Ng
2017-04-03 15:27:43 -05:00
committed by Daniel Tschinder
parent 22741a8068
commit 14b7f50e51
115 changed files with 10555 additions and 58 deletions

View File

@@ -0,0 +1 @@
function multiElementWithInitializer(...{a: r = 0, b: s, c: t = 1}) {}