I've read a few things, including this and this, but I think the below example is different than what they're talking about. One person actually raises a similar example in the discussion but it's ignored.

So, run in irb (ignore the warnings about assignment in the conditional):

(puts x) if (x = 0) # NameError: undefined local variable or method `x'...
x                   # => 0
(puts x) if (x = 0) # "0", => nil

but the second time there's no error.

Does this make any sense, even in a "once you understand what the parser is really doing and that this just some optiization it all becomes clear" kind of way? Because to me, it seems pretty darn undesireable.

To be clear, the above conditional should be equivalent (right?) to

if newvar=0
  puts newvar
end

which does not raise an error.

link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

Oddly enough, this works fine in Rubinius:

Welcome to IRB. You are using rubinius 1.2.4dev (1.8.7 7ae451a1 yyyy-mm-dd JI)
>> (puts x) if (x = 0) #=> nil
0

I'm inclined to say it's a weird parsing bug in MRI.

link|improve this answer
I guess he's using Ruby 1.9 where scope rules changed. – Serabe Aug 12 '11 at 6:39
This is interesting. I actually tried 1.8.7, 1.9.2, and jruby. rvm was taking forever to install rubinius so I posted before I tried it there. – ohspite Aug 12 '11 at 6:52
feedback

I think the difference in this case is whether the variable exists when it parses the line. In the case of:

if x=0
  puts x
end

the variable x is defined before it parses the line that uses x.

In other words, the error message is a parse time error, not a runtime error.

link|improve this answer
feedback

I think in this you are assigning 0 to x.

(puts x) if (x = 0)

i think it should be

(puts x) if (x == 0)
link|improve this answer
Right, I'm intentionally assigning 0 to x. But that part should be executed before the part before the if, and so it seems like it shouldn't cause an error the first time. – ohspite Aug 12 '11 at 6:25
feedback

First, check that you mean x=0 in the conditional clause.

Second, puts x if x = 0 is not equivalent to:

if x = 0
  puts x
end

In your case, x is not declared yet for puts x so it cannot see it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.