I noticed that class variables @@my_class var are now looked up in the context of the instance_eval'd object in Ruby 1.9.1 whereas this was not the case in Ruby 1.8.6.

What are some other differences in behaviour of instance_eval for Ruby 1.9.1 ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I can't list them all, but I know that there are some changes in constant lookup. In 1.8, constant lookup was in the callers scope, while it is in the blocks scope in 1.9.

FOO = "hi"

class Something
  FOO = "bye"

  def self.handle(&block)
    instance_eval(&block)
  end
end

p Something.handle { FOO }
# "hi" on 1.8, "bye" on 1.9
link|improve this answer
1  
I think this is incorrect. Try running the code in 1.9 and 1.8, the output is same. – Hemant Kumar Oct 25 '11 at 8:36
It was probably accurate for the version of 1.9 that was available in 2009 :) – August Lilleaas Oct 25 '11 at 8:51
feedback

I think it [at least currently] doesn't return self, either.

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.