source_location -> [String, Integer] | nil
[permalink][rdoc][edit]-
ソースコードのファイル名と行番号を配列で返します。
その手続オブジェクトが ruby で定義されていない(つまりネイティブである)場合は nil を返します。
require 'time' Time.instance_method(:zone).source_location # => nil Time.instance_method(:httpdate).source_location # => ["/Users/user/.rbenv/versions/2.4.3/lib/ruby/2.4.0/time.rb", 654]
[SEE_ALSO] Proc#source_location, Method#source_location