path -> String
イベントが発生したファイルのパスを返します。
例 def foo(ret) ret end trace = TracePoint.new(:call) do |tp| p tp.path # => "/path/to/test.rb" end trace.enable foo 1
def foo(ret) ret end trace = TracePoint.new(:call) do |tp| p tp.path # => "/path/to/test.rb" end trace.enable foo 1