るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.022秒)
トップページ > ライブラリ:ビルトイン[x] > クエリ:of[x] > クエリ:first_lineno[x]

別のキーワード

  1. _builtin first
  2. matrix first_minor
  3. range first
  4. array first
  5. enumerable first

検索結果

RubyVM::InstructionSequence#first_lineno -> Integer (18121.0)

self が表す命令シーケンスの 1 行目の行番号を返します。

...の 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...