From: itsme213 Date: 2004-12-07T13:32:33+09:00 Subject: any way to know context of expression evaluation? 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!