1件ヒット
[1-1件を表示]
(0.175秒)
別のキーワード
ライブラリ
- ビルトイン (1)
クラス
検索結果
-
RubyVM
:: InstructionSequence # absolute _ path -> String | nil (90643.0) -
self が表す命令シーケンスの絶対パスを返します。
self が表す命令シーケンスの絶対パスを返します。
self を文字列から作成していた場合は nil を返します。
例1:irb で実行した場合
iseq = RubyVM::InstructionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.absolute_path
# => nil
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method....