Skip to content

0.0.105

Compare
Choose a tag to compare
@arv arv released this 02 Apr 22:39
· 28 commits to master since this release
  • 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.