Project

General

Profile

Actions

Feature #6070

closed

The scope of for loop variables

Added by shugo (Shugo Maeda) about 12 years ago. Updated about 12 years ago.

Status:
Rejected
Target version:
[ruby-core:42843]

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.

http://blogs.msdn.com/b/ericlippert/archive/2009/11/12/closing-over-the-loop-variable-considered-harmful.aspx?PageIndex=3

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

for_loop_scope_fix.diff (2.64 KB) for_loop_scope_fix.diff shugo (Shugo Maeda), 02/24/2012 07:48 AM
for_loop_scope_fix_2.diff (2.81 KB) for_loop_scope_fix_2.diff shugo (Shugo Maeda), 02/24/2012 02:25 PM
noname (500 Bytes) noname Anonymous, 02/25/2012 03:23 AM
for_loop_scope_fix_0224.diff (8 KB) for_loop_scope_fix_0224.diff shugo (Shugo Maeda), 02/25/2012 11:42 PM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0Like0Like0