Feature #12490
closed
Remove warning on shadowing block params
Added by soutaro (Soutaro Matsumoto) over 8 years ago.
Updated about 6 years ago.
Description
Running ruby with -w option reports warnings on shadowing block params.
$ cat -n w.rb
1 a = [1]
2
3 a.each do |a|
4 a = 3
5 end
6
7 p a
$ ruby -cw w.rb
w.rb:3: warning: shadowing outer local variable - a
Syntax OK
I would like to propose to remove the warning.
It was introduced to ruby 1.9, a version which changes behaviors on conflicts of local vars and block param. I understand it is to tell the user the change, and let them fix if their program depends on 1.8 behavior. ruby 1.9.1 is released in 2009, almost seven years ago, and most ruby programmers today would have correct understanding of current behavior. In my opinion, the warning does not make sense now but just annoying.
- I like giving block params shadowing name to avoid finding new good names
- Lint tools including RuboCop can report the warning instead of ruby
Files
I guess the argument given by Soutaro Matsumoto makes sense (if this was indeed the reason why the warning has been added).
On a belated note, perhaps in the path towards ruby 3.x, we may have a better/finer control into how ruby issues warnings
in general. In general I always run via -w
, but not every warning appears to be hugely important to me. And I think there
is no fine-control over how to get notified about warnings (other than changing $VERBOSE
and re-setting it again, but
this is a bit crude and it does not read extremely elegant in code when one assigns $VERBOSE = nil
)
We looked at this issue at yesterday's developer meeting. While myself was positive to this, Matz is not. He thinks that shadowing by itself is a bad habit and should be discouraged. You need to show him a good advantage of encouraging variable shadowing to persuade him.
I definitely agree. Here's a typical example that makes me mad when I get the warning:
user = users.find { |user| user.parent == parent }
And I just don't want to change the inner variable name to something like u
or user_
just to silence the warning.
And we've got Matz's approval for this proposal! Congratulations!
- Status changed from Open to Closed
Applied in changeset trunk|r65367.
parse.y: remove "shadowing outer local variable" warning
You can now write the following without warning.
user = User.all.find {|user| cond(user) }
Fixes [Feature #12490].
Also available in: Atom
PDF
Like0
Like0Like0Like0Like0Like0