-
-
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] - Keep Integer type for inc/dec of an integer #2615
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2615 +/- ##
==========================================
+ Coverage 49.55% 49.57% +0.02%
==========================================
Files 385 384 -1
Lines 39138 39132 -6
==========================================
+ Hits 19393 19400 +7
+ Misses 19745 19732 -13
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! Thank you for the contribution @tunz
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! Thanks for the contribution 😄
bors r+ |
Keep Integer type after running unary increment/decrement ops if possible. The integer type will be useful to take fast paths for accessing index properties. (e.g., `let a = 1; arr[++a]`)
Pull request successfully merged into main. Build succeeded: |
Keep Integer type after running unary increment/decrement ops if possible. The integer type will be useful to take fast paths for accessing index properties. (e.g.,
let a = 1; arr[++a]
)