-
-
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] - Fix PropertyKey
index parse
#2843
Conversation
Test262 conformance changes
Fixed tests (24):
|
Codecov Report
@@ Coverage Diff @@
## main #2843 +/- ##
==========================================
+ Coverage 51.11% 51.13% +0.01%
==========================================
Files 419 419
Lines 41609 41632 +23
==========================================
+ Hits 21269 21287 +18
- Misses 20340 20345 +5
... and 1 file with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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 great to me!
ecdfdd0
to
f7fe0b9
Compare
Benchmark for c4093a1Click 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.
LGTM!
bors r+ |
Fixes incorrect parsing of index property keys, such as: - `"+0"` is converted to an integer index `0`, should be a string - `"00"` is converted to an integer index `0`, should be a string - `"01"` is converted to an integer index `1`, should be a string
Pull request successfully merged into main. Build succeeded: |
PropertyKey
index parsePropertyKey
index parse
Fixes incorrect parsing of index property keys, such as:
"+0"
is converted to an integer index0
, should be a string"00"
is converted to an integer index0
, should be a string"01"
is converted to an integer index1
, should be a string