Feature #6070
closedThe scope of for loop variables
Description
Hi,
In Ruby, the scope of a for loop variable is not limited in the for expression,
which means that a for expression counts on side effects.
This sometimes causes unexpected behavior when closing a for loop variable using a closure.
$ cat test.rb
procs = []
for lang in ["Ruby", "Scala", "Haskell"]
procs << -> { p lang }
end
procs.each(&:call)
$ ruby test.rb
"Haskell"
"Haskell"
"Haskell"
Why not make a for loop variable local to the for expression like a block parameter?
In Ruby 1.8, a for expression is faster than a method call with a block, but it's not
true in Ruby 1.9, so there is no reason to give a for expression special treatment.
The compatibility might be a problem, but I believe that code depending on the current behavior is evil.
Ruby's for expression also allows a global variable and a method call as a for loop variable. However,
I rarely see such code in real-world applications.
Furthermore, I've heard that the scope of a foreach loop variable is changed in C# 5.
Why should Ruby be more conservative than C#?
I've attached a patch for POC.
There is at least one problem in this patch. The problem is that it cannot handle
the following code in mkmf.rb.
I suspected that this code was written by nobu, but it was written by Eric.¶
for lib in libs = $libs.split
...
end
It's because libs is considered local to the for expression in parsing phase, but the variable
can't be found in dyna vars in compiling phase. I'm wondering how this code should behave and
how to implement it.
Files