add experimental es7 object spread/rest - closes #200
This commit is contained in:
1
test/fixtures/transformation/es7-object-spread/assignment/actual.js
vendored
Normal file
1
test/fixtures/transformation/es7-object-spread/assignment/actual.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
z = { x, ...y };
|
||||
3
test/fixtures/transformation/es7-object-spread/assignment/expected.js
vendored
Normal file
3
test/fixtures/transformation/es7-object-spread/assignment/expected.js
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
|
||||
z = Object.assign({ x: x }, y);
|
||||
Reference in New Issue
Block a user