るりまサーチ

最速Rubyリファレンスマニュアル検索!
201件ヒット [201-201件を表示] (0.071秒)

別のキーワード

  1. tracepoint disable
  2. _builtin tracepoint
  3. tracepoint enabled?
  4. tracepoint trace

ライブラリ

キーワード

検索結果

<< < 1 2 3 >>

TracePoint#return_value -> object (9014.0)

メソッドやブロックの戻り値を返します。

...timeError :return、:c_return、:b_return イベントのためのイベ
ントフックの外側で実行した場合に発生します。

//emlist[例][ruby]{
def foo(ret)
ret
end
trace = TracePoint.new(:return) do |tp|
p tp.return_value # => 1
end
trace.enable
foo 1
//}...
<< < 1 2 3 >>