Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #3340
| From | 7stud -- <bbxx789_05ss@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: class_eval doesn't find const_missing |
| Date | 2011-04-21 17:38 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <8d93e623bc0cb97e66f32057619d3be9@ruby-forum.com> (permalink) |
| References | <094bd73f3389eb03672e8bb25c9b8ec6@ruby-forum.com> |
Andrew Berkeley wrote in post #994369:
>
> Interestingly, an explicit call to #const_missing inside a class_eval
> block DOES work.
>> DummyClass.class_eval {const_missing :ANOTHER_CONSTANT}
> => "this ANOTHER_CONSTANT was captured by #const_missing"
>
> Anybody understand this, and is there a way to get around it?
>
This line:
DummyClass.class_eval {const_missing :ANOTHER_CONSTANT}
is equivalent to:
DummyClass.class_eval {
self.const_missing(:ANOTHER_CONSTANT)
}
And because class_eval() changes self inside the block to be equal to
the receiver, the above is equivalent to:
DummyClass.class_eval {
DummyClass.const_missing(:ANOTHER_CONSTANT)
}
..producing the output you see.
Also, note the output here:
DummyClass.class_eval do
puts self::NAME
end
--output:--
dummy constant
--
Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
class_eval doesn't find const_missing Andrew Berkeley <andrew.berkeley.is@googlemail.com> - 2011-04-21 14:20 -0500
Re: class_eval doesn't find const_missing Stephen Prater <stephenp@agrussell.com> - 2011-04-21 16:34 -0500
Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 18:14 -0500
Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 17:38 -0500
Re: class_eval doesn't find const_missing 7stud -- <bbxx789_05ss@yahoo.com> - 2011-04-21 18:29 -0500
Re: class_eval doesn't find const_missing Brian Candler <b.candler@pobox.com> - 2011-04-21 16:26 -0500
Re: class_eval doesn't find const_missing Andrew Berkeley <andrew.berkeley.is@googlemail.com> - 2011-04-22 14:43 -0500
csiph-web