path -> String
[permalink][rdoc][edit]-
イベントが発生したファイルのパスを返します。
- [EXCEPTION] RuntimeError:
- イベントフックの外側で実行した場合に発生します。
def foo(ret) ret end trace = TracePoint.new(:call) do |tp| p tp.path # => "/path/to/test.rb" end trace.enable foo 1
path -> String
[permalink][rdoc][edit]イベントが発生したファイルのパスを返します。
def foo(ret)
ret
end
trace = TracePoint.new(:call) do |tp|
p tp.path # => "/path/to/test.rb"
end
trace.enable
foo 1