1件ヒット
[1-1件を表示]
(0.402秒)
ライブラリ
- ビルトイン (1)
クラス
- TracePoint (1)
検索結果
-
TracePoint
# instruction _ sequence -> RubyVM :: InstructionSequence (105958.0) -
script_compiledイベント発生時にコンパイルされた RubyVM::InstructionSequenceインスタンスを返します。
script_compiledイベント発生時にコンパイルされた
RubyVM::InstructionSequenceインスタンスを返します。
//emlist[例][ruby]{
TracePoint.new(:script_compiled) do |tp|
p tp.instruction_sequence # => <RubyVM::InstructionSequence:block in <main>@(eval):1>
end.enable do
eval("puts 'hello'")
end
//}
@raise RuntimeError :script_comp...