0.0.105
- Fix issue where we did not allow declarations to shadow the function expression name.
- Implement Spread Properties. This add support for
...
in object literals which is currently at stage 2.
var x = {a: 1};
var y = {...a, b: 2}; // {a: 1, b: 2}
- JSX: Fix assignment expression parsing in place holders.
- JSX: Fix whitespace and escaping of attribute values.