aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/thread/backtrace/location/fixtures/absolute_path_method_added.rb
blob: 26d6298a199d071cb0edf4dbda346e27badd67b5 (plain)
1
2
3
4
5
6
7
8
9
10
module ThreadBacktraceLocationSpecs
  class MethodAddedAbsolutePath
    def self.method_added(name)
      ScratchPad.record caller_locations
    end

    def foo
    end
  end
end