If I have a call to bar being executed:
def bar (x, y)
foo x, y
end
And the evaluation of x throws a (resumable, in my case) exception, is there
is any way to figure out that the x was being evaluated in preparation for
the "foo" call? I have some information about foo that I would like to
exploit in handling the exception.
Thanks!