-
-
Notifications
You must be signed in to change notification settings - Fork 406
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
[Merged by Bors] - Do not auto-insert semicolon in VariableDeclarationList #2266
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2266 +/- ##
==========================================
- Coverage 41.30% 41.30% -0.01%
==========================================
Files 234 234
Lines 22018 22015 -3
==========================================
- Hits 9095 9093 -2
+ Misses 12923 12922 -1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Test262 conformance changesVM implementation
Fixed tests (4):
|
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.
Good catch! Looks good :) It only needs a cargo fmt
run, but then it can be merged, thanks!!
bors r+ |
🕐 Waiting for PR status (Github check) to be set, probably by CI. Bors will automatically try to run when all required PR statuses are set. |
bors r+ |
There can be a line terminator in the middle of variable declaration statement. For example, ```js var a , b; ``` In this case, we should not insert semicolon automatically. This fixes: - test262/test/language/asi/S7.9_A7_T8.js - test262/test/language/asi/S7.9_A7_T9.js
Pull request successfully merged into main. Build succeeded: |
There can be a line terminator in the middle of variable declaration statement. For example,
In this case, we should not insert semicolon automatically.
This fixes: