add experimental es7 object spread/rest - closes #200

This commit is contained in:
Sebastian McKenzie
2014-11-23 21:43:01 +11:00
parent c500532469
commit 3447204d97
23 changed files with 155 additions and 24 deletions

View File

@@ -0,0 +1 @@
z = { x, ...y };

View File

@@ -0,0 +1,3 @@
"use strict";
z = Object.assign({ x: x }, y);