-
-
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] - [Merged by Bors] - Fix get function opcode traces #2708
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2708 +/- ##
==========================================
+ Coverage 49.44% 50.47% +1.02%
==========================================
Files 395 393 -2
Lines 39693 38857 -836
==========================================
- Hits 19627 19613 -14
+ Misses 20066 19244 -822
... and 18 files 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. |
b12ffb4
to
6eeaabc
Compare
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.
Nice!
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.
Nice improvement :)
bors r+ |
Fix get function opcode traces (`GetFunction`, `GetGenerator`, etc) ```js function x() { let y = 0; } ``` Before: ``` 000000 0000 GetFunction 0000: 'JSInternedStrRef { utf8: Some("x"), utf16: [120] }' (length: 0) 000006 0001 DefInitVar 0000: 'x' ``` After: ``` 000000 0000 GetFunction 0000: 'x' (length: 0) 000006 0001 DefInitVar 0000: 'x' ```
Pull request successfully merged into main. Build succeeded: |
Pull request successfully merged into main. Build succeeded: |
Fix get function opcode traces (
GetFunction
,GetGenerator
, etc)Before:
After: