instance method TracePoint#defined_class

defined_class -> Class | module[permalink][rdoc][edit]

メソッドを定義したクラスかモジュールを返します。



class C; def foo; end; end
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class # => C
end.enable do
  C.new.foo
end

メソッドがモジュールで定義されていた場合も(include に関係なく)モジュールを返します。



module M; def foo; end; end
class C; include M; end;
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class # => M
end.enable do
  C.new.foo
end

[注意] 特異メソッドを実行した場合は TracePoint#defined_class は特異クラスを返します。また、Kernel.#set_trace_func の 6 番目のブロックパラメータは特異クラスではなく元のクラスを返します。



class C; def self.foo; end; end
trace = TracePoint.new(:call) do |tp|
  p tp.defined_class # => #<Class:C>
end.enable do
  C.foo
end

Kernel.#set_trace_funcTracePoint の上記の差分に注意してください。

[SEE_ALSO] [ruby-core:50864]