-
Notifications
You must be signed in to change notification settings - Fork 629
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
JavaScript: allow class methods get and set #3329
JavaScript: allow class methods get and set #3329
Conversation
Could you remove the last commit 0b5c16a? Saying frankly, I don't understand what it is. However, I guess, it is not a "must" for the purpose of this pull request. |
Codecov Report
@@ Coverage Diff @@
## master #3329 +/- ##
==========================================
- Coverage 85.44% 85.43% -0.01%
==========================================
Files 216 216
Lines 50319 50337 +18
==========================================
+ Hits 42993 43004 +11
- Misses 7326 7333 +7
Continue to review full report at Codecov.
|
0d1bd8d
to
6bcd629
Compare
Once everything else looks good, I will include the |
How about the following change? A. if the token just read is "TOKEN_OPEN_PAREN", NextToken must be NULL. B. this parser assumes
|
6bcd629
to
2c210f9
Compare
Thanks for catching that! |
…parate from getters and setters
2c210f9
to
661398c
Compare
Could you wait for a week till merging? |
@masatake Note that I cannot merge any pull requests. You will have to do it when you feel comfortable. |
@jafl, yes, I know. I approved your pull request explicitly before merging just for recording what I did as the maintainer of this repository. I will merge your pull request this weekend. |
Thank you. |
get
andset
are used to define getters and setters for a class. However,get
andset
can also be method names. This patch adds support for the latter.