Const_missing - why is it necessary to hook it at Module?

Why doesn’t the following code work?

class Foo
def Foo.const_missing(sym)
p sym
sym.to_s
end
end

Foo.new.instance_eval {
Bar
}

I thought the missing constant Bar would be caught
by the const_missing, since it’s available on the
class whose instance is being instance_eval’d.

What gives? I’m writing a DSL and want to catch missing
constants within a block being instance_eval’d

Clifford H…

Hi –

On 3/18/07, Clifford H. [email protected] wrote:

    Bar

}

I thought the missing constant Bar would be caught
by the const_missing, since it’s available on the
class whose instance is being instance_eval’d.

What gives? I’m writing a DSL and want to catch missing
constants within a block being instance_eval’d

All that instance_eval does is set self and execute the block.
Constants don’t depend on self for their scope; they use a kind of
quasi-static scoping, and the Bar in your block is resolved
(unsuccessfully) as Bar from the top level.

You’d need to add your const_missing method to Object, so as to cover
the top level.

David

David A. Black wrote:

Constants don’t depend on self for their scope; they use a kind of
quasi-static scoping

Ok, thanks David, I figured it was something like that.
There are very few cases where const_missing gets used
(Rails and Rake being two), and it’s not obvious from
them or from the documentation that it works like that.

BTW, I recently saw a video of your “Curious developer”
talk on database design at the RailsConf 2006. I expect
to address many of the issues through my “ActiveFacts”
project (this DSL I’m working on is a fact-based data
modeling language). Would you be interested in private
communication regarding this project?

Clifford H…

Clifford H. wrote:

Would you be interested in private
communication regarding this project?

David, I got your response. Perhaps you didn’t see mine?

Clifford H…