Traceur compiler v0.0.105 Release Notes

Release Date: 2016-04-02 // almost 8 years ago
    • ๐Ÿ›  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.