Actions
Feature #8691
closedAdd warning for variable that is re-assigned but not re-used
Status:
Closed
Assignee:
-
Target version:
-
Description
The following code
def reassigned_unused
a = 42
b = a.to_s
a = 56
b
end
Does not currently generate an "assigned but unused variable" warning about the second assignment to "a".
Is it feasible to create a warning for such a scenario?
Updated by agrimm (Andrew Grimm) about 11 years ago
A third party tool that I use, called Rubocop, has implemented such functionality. https://github.com/bbatsov/rubocop/issues/458
So I don't really require this functionality in MRI any more.
Updated by zzak (zzak _) about 11 years ago
- Status changed from Open to Feedback
@andrew should we close this ticket then?
Updated by agrimm (Andrew Grimm) about 11 years ago
Yes, close the ticket. If someone else wants the functionality, or has implemented the functionality and wants to submit a patch, they can open another ticket.
Updated by zzak (zzak _) about 11 years ago
- Status changed from Feedback to Closed
closing, see ruby-core:57091
Actions
Like0
Like0Like0Like0Like0