Enumerating constants in anonymous modules

X

Xavier Shay

How can I enumerate all the constants inside the module in the second
example?
Notice that #constants array is empty

For bonus points, which is the "correct" eval method to use to define a
class inside the module (they all seem to work)

Cheers,
Xavier

module Foo
class A
end
end

puts Foo.constants.inspect # => ["A"]

[:module_eval, :instance_eval, :class_eval].each do |method|
m = Module.new
m.send(method) do
class B
end
end
puts m.constants.inspect # => [] (I would expect ['B'])
puts m.const_get('B').inspect # => B
end
 
D

David A. Black

Hi --

How can I enumerate all the constants inside the module in the second
example?
Notice that #constants array is empty

See comments in code, below.
For bonus points, which is the "correct" eval method to use to define a
class inside the module (they all seem to work)

module_eval and class_eval are synonyms for each other. I'd use
module_eval over instance_eval, unless you specifically need instance
methods to be singleton methods on the module object (which is
unlikely, and can be achieved by other means under module_eval).
module Foo
class A
end
end

puts Foo.constants.inspect # => ["A"]

[:module_eval, :instance_eval, :class_eval].each do |method|
m = Module.new
m.send(method) do
class B

The constant B is resolved in the usual "semi-static", eager way,
which means it does not belong to the new module: it's actually being
defined at the top level.
end
end
puts m.constants.inspect # => [] (I would expect ['B'])
puts m.const_get('B').inspect # => B
end

Try this:

m = Module.new
m.module_eval do
class self::B # forces Ruby to wait to bind the constant
end
end
puts m.constants.inspect # ["B"]
puts m.const_get('B').inspect # #<Module:0x220164>::B


David

--
Rails training from David A. Black and Ruby Power and Light:
Intro to Ruby on Rails January 12-15 Fort Lauderdale, FL
Advancing with Rails January 19-22 Fort Lauderdale, FL *
* Co-taught with Patrick Ewing!
See http://www.rubypal.com for details and updates!
 
X

Xavier Shay

David said:
Hi --



See comments in code, below.


module_eval and class_eval are synonyms for each other. I'd use
module_eval over instance_eval, unless you specifically need instance
methods to be singleton methods on the module object (which is
unlikely, and can be achieved by other means under module_eval).

I'm not really sure what I need, I'll do some more reading and come back
if I have any further questions. Using module_eval for now.
Try this:

m = Module.new
m.module_eval do
class self::B # forces Ruby to wait to bind the constant
end
end
puts m.constants.inspect # ["B"]
puts m.const_get('B').inspect # #<Module:0x220164>::B

This does what I want, cheers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,577
Members
45,052
Latest member
LucyCarper

Latest Threads

Top