Project

General

Profile

Actions

Bug #7622

closed

Can't grab exceptions at (|c_|b_)return event hooks

Added by ko1 (Koichi Sasada) over 11 years ago. Updated over 11 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 2.0.0dev (2012-12-21 trunk 38515) [i386-mswin32_100]
Backport:
[ruby-core:51124]

Description

The following code raise uncaught error:

test.rb:14:in block in <main>': FooError (FooError) from test.rb:3:in m1'
from test.rb:7:in m2' from test.rb:19:in block in '
from test.rb:17:in times' from test.rb:17:in '

But should be caught at line "rescue FooError => e".

code:

def m1
raise
end

def m2
m1
end

class FooError < Exception; end

TracePoint.trace{|tp|
p tp
raise FooError if tp.event == :return && tp.method_id == :m1
}

1.times{
begin
m2
rescue FooError => e
p e
end
}

Updated by ko1 (Koichi Sasada) over 11 years ago

`ensure' is also ignored.

Updated by ko1 (Koichi Sasada) over 11 years ago

  • Status changed from Open to Closed

r38601 may solve this issue.

Actions

Also available in: Atom PDF

Like0
Like0Like0