public interface MethodFab
void addCatch(java.lang.Class exceptionClass, java.lang.String catchBody)
$e
represents the caught exception.void extend(java.lang.String body, boolean asFinally)
$_
, for example
$_ = 2 * $_
.body
- a block to execute after any existing code in the methodasFinally
- if true, the block provided wil execute as with a finally block (even if an
exception is thrown)