-
-
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] - Create Source
to abstract JS code sources
#2579
Conversation
Test262 conformance changes
|
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.
Just got two suggestions, otherwise this looks good
Codecov Report
@@ Coverage Diff @@
## main #2579 +/- ##
==========================================
- Coverage 50.04% 49.93% -0.12%
==========================================
Files 379 381 +2
Lines 37805 37899 +94
==========================================
+ Hits 18921 18924 +3
- Misses 18884 18975 +91
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 good to me 😄
bors r+ |
Slightly related to #2411 since we need an API to pass module files, but more useful for #1760, #1313 and other error reporting issues. It changes the following: - Introduces a new `Source` API to store the path of a provided file or `None` if the source is a plain string. - Improves the display of `boa_tester` to show the path of the tests being run. This also enables hyperlinks to directly jump to the tested file from the VS terminal. - Adjusts the repo to this change. Hopefully, this will improve our error display in the future.
Pull request successfully merged into main. Build succeeded: |
Source
to abstract JS code sourcesSource
to abstract JS code sources
Slightly related to #2411 since we need an API to pass module files, but more useful for #1760, #1313 and other error reporting issues.
It changes the following:
Source
API to store the path of a provided file orNone
if the source is a plain string.boa_tester
to show the path of the tests being run. This also enables hyperlinks to directly jump to the tested file from the VS terminal.Hopefully, this will improve our error display in the future.