Let's say I have:
begin 2.times do a = 1 1/0 end rescue puts $! debugger end
In this example, I want to get the value of a . If a initialized in a begin block, then I can access it when saving. However, in this example, a is block-local. Is there any way to get a binding at the time of the exception when I save?
Vassilis
source share