lineno -> Integer
発生したイベントの行番号を返します。
例 def foo(ret) ret end trace = TracePoint.new(:call, :return) do |tp| tp.lineno end trace.enable foo 1 # => 1 # 3
def foo(ret) ret end trace = TracePoint.new(:call, :return) do |tp| tp.lineno end trace.enable foo 1 # => 1 # 3