るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.008秒)
トップページ > クエリ:rc[x] > クラス:Proc[x]

別のキーワード

  1. rc2 new
  2. rc4 new
  3. rc5 new
  4. context rc
  5. openssl rc5

ライブラリ

検索結果

Proc#source_location -> [String, Integer] | nil (6101.0)

ソースコードのファイル名と行番号を配列で返します。

...by]{
# /path/to/target.rb を実行
proc
{}.source_location # => ["/path/to/target.rb", 1]
proc
{}.source_location # => ["/path/to/target.rb", 2]
(eval "proc {}").source_location # => ["(eval)", 1]
method(:p).to_proc.source_location # => nil
//}

@see Method#source_location...