-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Fix tuple_array_conversions FP when binded vars are used before conversion
#16197
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
Conversation
|
No changes for 3551aeb |
…P when binded vars are used before conversion
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.
This only fixes one of the problems in the linked issue. The lint is still emitted on:
let [a, b] = foo();
let tup = (b, a);This can't be changed since it's changing the order. This can be a different PR, but the issue can't be closed without it.
|
Reminder, once the PR becomes ready for a review, use |
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.
Thank you.
Closes #16192
changelog: [
tuple_array_conversions] fix FP when binded vars are used before conversion