-
-
Notifications
You must be signed in to change notification settings - Fork 408
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
Implement String.prototype.split #1026
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1026 +/- ##
==========================================
+ Coverage 58.69% 58.77% +0.07%
==========================================
Files 172 172
Lines 11745 11782 +37
==========================================
+ Hits 6894 6925 +31
- Misses 4851 4857 +6
Continue to review full report at Codecov.
|
I will check the code through the day, but the conformance increase looks really good :) Test262 conformance changes:
|
@Razican The three extra panics come from |
I would guess this now enables some tests to run further, which shows some panics that did not appear before because it was failing early. |
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.
It's looking good! I added some sugestions to make the code a bit more idiomatic :)
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, noted a few improvements to be closer to the spec.
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, let's merge it :)
This Pull Request implements
String.prototype.split
It changes the following: