るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.021秒)
トップページ > バージョン:2.3.0[x] > 種類:特異メソッド[x] > クエリ:TracePoint#disable[x]

別のキーワード

  1. tracepoint disable
  2. tracepoint enable
  3. _builtin tracepoint
  4. tracepoint self
  5. tracepoint enabled?

ライブラリ

クラス

検索結果

TracePoint.new(*events) {|obj| ... } -> TracePoint (63565.0)

新しい TracePoint オブジェクトを作成して返します。トレースを有効 にするには TracePoint#enable を実行してください。

新しい 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!"
# ....