Actions
Bug #13320
closedrescue blocks get an entry in backtrace locations
    Bug #13320:
    rescue blocks get an entry in backtrace locations
  
Description
def foo
  puts caller(0)
end
def bar
  raise
rescue
  foo
end
bar
foo
rescue in bar
bar
this does not seem to make sense, conceptually a rescue block is not a separate callable entity, but just a section of a method, why should it get its own entry in the call stack?
Actions