mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
* Changelog sub-sections should use h3, not h2; no need for hack anchor tag anymore * Internationalize dates to user’s locale * Consistent names * Split up the changelog into separate files per version; make HTML markup consistent with the other sections in the docs * Fix sidebar links for introduction and overview
741 B
741 B
releaseHeader('2017-01-24', '1.12.3', '1.12.2')
@values can now be used as indices inforexpressions. This loosens the compilation offorexpressions to allow the index variable to be an@value, e.g.do @visit for @node, @index in nodes. Within@visit, the index of the current node (@node) would be available as@index.- CoffeeScript’s patched
Error.prepareStackTracehas been restored, with some revisions that should prevent the erroneous exceptions that were making life difficult for some downstream projects. This fixes the incorrect line numbers in stack traces since 1.12.2. - The
//=operator’s output now wraps parentheses around the right operand, like the other assignment operators.