-
-
Notifications
You must be signed in to change notification settings - Fork 411
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] - Refactor IdentifierReference
parsing
#2055
Conversation
Test262 conformance changesVM implementation
Fixed tests (35):
Broken tests (2):
|
Codecov Report
@@ Coverage Diff @@
## main #2055 +/- ##
==========================================
+ Coverage 44.16% 44.18% +0.01%
==========================================
Files 212 214 +2
Lines 18812 18874 +62
==========================================
+ Hits 8309 8339 +30
- Misses 10503 10535 +32
Continue to review full report at Codecov.
|
Benchmark for 487c4a8Click to view benchmark
|
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.
I added some comments, but it looks great!
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.
Looks good to me! :)
bors r+ |
This Pull Request changes the following: - Crate dedicated `IdentifierReference` parser and refactor `PrimaryExpression` and `PropertyDefinition` parsers to use it. - Move `BindingIdentifier` and `LabelIdentifier` parsers from statement parser module to expression parser module to conform with the spec. - Add and early error case while converting an `ObjectLiteral` to an `ObjectAssignmentPattern`
Pull request successfully merged into main. Build succeeded: |
IdentifierReference
parsingIdentifierReference
parsing
This Pull Request changes the following: - Crate dedicated `IdentifierReference` parser and refactor `PrimaryExpression` and `PropertyDefinition` parsers to use it. - Move `BindingIdentifier` and `LabelIdentifier` parsers from statement parser module to expression parser module to conform with the spec. - Add and early error case while converting an `ObjectLiteral` to an `ObjectAssignmentPattern`
This Pull Request changes the following:
IdentifierReference
parser and refactorPrimaryExpression
andPropertyDefinition
parsers to use it.BindingIdentifier
andLabelIdentifier
parsers from statement parser module to expression parser module to conform with the spec.ObjectLiteral
to anObjectAssignmentPattern