108件ヒット
[101-108件を表示]
(0.060秒)
別のキーワード
ライブラリ
- ビルトイン (108)
クラス
- Exception (24)
- Thread (12)
-
Thread
:: Backtrace :: Location (72)
キーワード
-
absolute
_ path (12) -
base
_ label (12) - inspect (12)
- label (12)
- path (12)
-
set
_ backtrace (12) -
to
_ s (12)
検索結果
-
Thread
:: Backtrace :: Location # to _ s -> String (3114.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...