-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.3.0 #5043
Merged
Merged
2.3.0 #5043
+3,315
−4,109
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… fix main column width on mobile
…ff on the NPM page; update README and CONTRIBUTING text
zdenko
approved these changes
Apr 27, 2018
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Since this PR is a bit bigger than usual, can anyone try using this branch in a project? Especially one with object spreads/rest. |
Closed
I just tested this branch with my biggest app and it seemed to work fine, so hopefully this is good to go. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This release adds support for all the new features and syntaxes in ES2018 that weren’t already possible in CoffeeScript.
yield
anawait
call, e.g.do -> until file.EOF then yield await file.readLine()
. Fix #4875: Asynchronous iterators #4893{a, b, rest...} = obj
now outputs more or less just like it appears, rather than being converted into anObject.assign
call. Note that there are some subtle differences between theObject.assign
polyfill and the native implementation. Fix #4876: remove polyfill for object rest/spread #4884**
, and exponentiation assignment operator**=
are new to JavaScript in ES2018. Now code likea ** 3
is output as it appears, rather than being converted intoMath.pow(a, 3)
as it was before. Fix #4877: Exponentiation operators #4881s
(dotAll) flag is now supported in regular expressions. Regular expressionss
(dotAll) flag #4880http://rawgit.com/GeoffreyBooth/coffeescript/2.3.0/docs/v2/