12件ヒット
[1-12件を表示]
(0.014秒)
別のキーワード
ライブラリ
- ビルトイン (12)
クラス
- TracePoint (12)
検索結果
-
TracePoint
. new(*events) {|obj| . . . } -> TracePoint (7.0) -
新しい TracePoint オブジェクトを作成して返します。トレースを有効 にするには TracePoint#enable を実行してください。
...てください。
//emlist[例:irb で実行した場合][ruby]{
trace = TracePoint.new(:call) do |tp|
p [tp.lineno, tp.defined_class, tp.method_id, tp.event]
end
# => #<TracePoint:0x007f17372cdb20>
trace.enable
# => false
puts "Hello, TracePoint!"
# ...
# [69, IRB::Notifier::AbstractNotifie...