interception method_added for blocks

R

robertj

hi,

is it possible to somehow intercept method_added
for defs defined within a block?

y = Proc.new {
def x
end
}

for example in the code above who gets notfied of the existance of x?

ciao robertj
 
T

Trans

class << Proc
alias_method :_new, :new
def new( *args, &blk )
puts "Intercept..."
_new( *args, &blk )
end
end

You can't do it with method_added becuase it is a *post* hook --the
method has already been created.
 
T

Trans

Ah misread that a bit. The code won't help, so ignore that.

Actual answer: It depends on where you evaluate the code.

irb(main):001:0> class A
irb(main):002:1> def self.method_added( sym )
irb(main):003:2> p "A##{sym}"
irb(main):004:2> end
irb(main):005:1> end
=> nil
irb(main):006:0> class B
irb(main):007:1> def self.method_added( sym )
irb(main):008:2> p "B##{sym}"
irb(main):009:2> end
irb(main):010:1> end
=> nil
irb(main):011:0> d = Proc.new{ def x; end }
=> #<Proc:0xb79d553c@(irb):11>
irb(main):012:0> A.class_eval &d
"A#x"
=> nil
irb(main):013:0> B.class_eval &d
"B#x"
=> nil
 

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

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top