1件ヒット
[1-1件を表示]
(0.060秒)
ライブラリ
- ビルトイン (1)
クラス
検索結果
-
RubyVM
:: InstructionSequence # first _ lineno -> Integer (63358.0) -
self が表す命令シーケンスの 1 行目の行番号を返します。
self が表す命令シーケンスの 1 行目の行番号を返します。
例1:irb で実行した場合
RubyVM::InstructionSequence.compile('num = 1 + 2').first_lineno
# => 1
例2:
# /tmp/method.rb
require "foo-library"
def foo
p :foo
end
RubyVM::InstructionSequence.of(method(:foo)).first_lineno
# => 2