るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.047秒)
トップページ > クエリ:File[x] > クエリ:test[x] > クエリ:allocation_sourcefile[x]

別のキーワード

  1. kernel test
  2. _builtin test
  3. rubygems/test_utilities tempio
  4. rubygems/test_utilities fetcher=
  5. specification test_suite_file

ライブラリ

モジュール

検索結果

ObjectSpace.#allocation_sourcefile(object) -> String (24231.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_all...