るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.035秒)

別のキーワード

  1. _builtin call
  2. method call
  3. fiddle call
  4. formatter call
  5. continuation call

ライブラリ

検索結果

Thread::Backtrace::Location#to_s -> String (18137.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...