201件ヒット
[201-201件を表示]
(0.053秒)
別のキーワード
ライブラリ
- ビルトイン (189)
- bigdecimal (12)
クラス
- BigDecimal (12)
- TracePoint (189)
キーワード
- binding (12)
-
callee
_ id (12) - coerce (12)
-
defined
_ class (12) - disable (24)
-
eval
_ script (7) - event (12)
- inspect (12)
-
instruction
_ sequence (7) - lineno (12)
-
method
_ id (12) - parameters (7)
- path (12)
-
raised
_ exception (12) -
return
_ value (12)
検索結果
-
TracePoint
# return _ value -> object (19.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
//}...