24件ヒット
[1-24件を表示]
(0.043秒)
ライブラリ
- ビルトイン (12)
-
irb
/ context (12)
クラス
-
IRB
:: Context (12) - TracePoint (12)
検索結果
先頭2件
-
IRB
:: Context . new(irb , workspace = nil , input _ method = nil , output _ method = nil) -> IRB :: Context (18322.0) -
自身を初期化します。
...た場合は新しく作成されます。
@param input_method String、IRB::InputMethod のサブクラスの
オブジェクト、nil のいずれかを指定します。
@param output_method IRB::OutputMethod のサブクラスのオブジェクト......を指定します。省略した場合は
IRB::StdioOutputMethod オブジェクトが新しく
作成されます。... -
TracePoint
. new(*events) {|obj| . . . } -> TracePoint (18120.0) -
新しい TracePoint オブジェクトを作成して返します。トレースを有効 にするには TracePoint#enable を実行してください。
...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,......るには TracePoint#disable を実行してください。
//emlist[][ruby]{
trace.disable
//}
@param events トレースするイベントを String か Symbol で任
意の数指定します。
: :line
式の評価。
: :class
クラス定義、特異クラス定義、モ...