るりまサーチ

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

別のキーワード

  1. kernel caller
  2. _builtin caller
  3. _builtin caller_locations
  4. caller _builtin

検索結果

Thread::Backtrace::Location#to_s -> String (25.0)

self が表すフレームを Kernel.#caller と同じ表現にした文字列を返し ます。

...self が表すフレームを Kernel.#caller と同じ表現にした文字列を返し
ます。

//emlist[例][ruby]{
# foo.rb
class Foo
attr_accessor :locations
def initialize(skip)
@locations = caller_locations(skip)
end
end

Foo.new(0..2).locations.map do |call|
puts call.to_s
end...