るりまサーチ

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file path
  4. file mtime
  5. file lstat

ライブラリ

検索結果

ObjectSpace.#allocation_sourcefile(object) -> String (6126.0)

objectの元となったソースファイル名を返します。

...ます。

//emlist[例:test.rbというファイルで下記のスクリプトを実行した場合][ruby]{
require 'objspace'

ObjectSpace
::trace_object_allocations_start
obj = Object.new
puts "file:#{ObjectSpace::allocation_sourcefile(obj)}" # => file:test.rb
ObjectSpace
::trace_object_allocatio...
...ns_stop
//}

@see ObjectSpace.#trace_object_allocations_start,
ObjectSpace
.#trace_object_allocations_stop...