-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
LibJS: Add %TypedArray%.prototype.toReversed #14445
Conversation
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, mostly LGTM! First commit contains the tests that should probably go into the second :)
5535af6
to
f18fa9d
Compare
0f6dd38
to
dc8a5ea
Compare
// 6. Repeat, while k < length | ||
for (size_t k = 0; k < length; k++) { | ||
// a. Let from be ! ToString(𝔽(length - k - 1)). | ||
// Let Pk be ! ToString(𝔽(k)). |
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.
Missing b.
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.
Added. :)
dc8a5ea
to
dee66f3
Compare
dee66f3
to
c5812e4
Compare
No description provided.