Home
last modified time | relevance | path

Searched refs:backtrace_locations (Results 1 – 12 of 12) sorted by relevance

/dports/lang/ruby26/ruby-2.6.9/test/ruby/
H A Dtest_backtrace.rb23 backtrace, backtrace_locations = Fiber.new{
27 [e.backtrace, e.backtrace_locations]
30 assert_equal(backtrace, backtrace_locations.map{|e| e.to_s})
32 backtrace, backtrace_locations = Fiber.new{
40 [e.backtrace, e.backtrace_locations]
51 backtrace, backtrace_locations = Fiber.new{
55 [e.backtrace, e.backtrace_locations]
60 backtrace, backtrace_locations = Fiber.new{
64 [e.backtrace, e.backtrace_locations]
236 th_locations = th.backtrace_locations
[all …]
H A Dtest_optimization.rb444 level = e.backtrace_locations.size
448 mesg = message {"#{bug}: #{$!.backtrace_locations.size} / #{level} stack levels"}
H A Dtest_keyword.rb322 assert_equal('xyzzy', e.backtrace_locations[0].path)
H A Dtest_parse.rb1053 assert_equal(-100, e.backtrace_locations.first.lineno, bug)
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/core/exception/
H A Dbacktrace_locations_spec.rb6 @backtrace = ExceptionSpecs::Backtrace.backtrace_locations
10 Exception.new.backtrace_locations.should be_nil
28 exception.backtrace_locations.first.path.should =~ /backtrace_locations_spec/
35 e.backtrace_locations.unshift "backtrace first"
36 e.backtrace_locations[0].should == "backtrace first"
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/core/exception/fixtures/
H A Dcommon.rb13 def self.backtrace_locations singletonMethod in ExceptionSpecs.Backtrace
17 e.backtrace_locations
/dports/lang/ruby26/ruby-2.6.9/gems/did_you_mean-1.3.0/lib/did_you_mean/experimental/
H A Divar_name_correction.rb37 @location = no_method_error.backtrace_locations.first
/dports/lang/ruby26/ruby-2.6.9/doc/
H A DNEWS-2.0.0208 * added Thread#backtrace_locations which returns similar information of
211 information. These are returned by Thread#backtrace_locations and
H A DChangeLog-2.1.0363 * error.c: add Exception#backtrace_locations.
375 Exception#backtrace_locations.
17229 * thread.c: Grammar for #backtrace_locations and ::handle_interrupt
17257 * thread.c: Documentation for Thread#backtrace_locations
H A DChangeLog-2.0.06176 * thread.c: add `Thread#backtrace_locations' method.
6180 and `Thread#backtrace_locations'.
6183 However, `Thread#backtrace' (and `Thread#backtrace_locations')
H A DChangeLog-2.2.011967 a result of Exception#backtrace_locations.
/dports/lang/ruby26/ruby-2.6.9/ext/
H A Dextmk.rb242 loc = error.backtrace_locations[0]