るりまサーチ (Ruby 3.0)

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. fileutils copy_file
  4. fileutils compare_file
  5. tarwriter add_file

ライブラリ

検索結果

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

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

...uby]{
require 'objspace'

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

@see ObjectSpace.#trace_object_allocations_start,
ObjectSpace
.#trace_object_allocatio...