11件ヒット
[1-11件を表示]
(0.010秒)
別のキーワード
ライブラリ
- ビルトイン (11)
検索結果
-
TracePoint
# return _ value -> object (18108.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
//}...