}
public void visitATHROW(ATHROW instruction) {
Expression expression = context.getExpressions().pop();
Throw throwException = new Throw(context.getCurrentInstruction(), expression);
StatementIntermediate complete = new StatementIntermediate(context.getCurrentInstruction(), throwException);
context.pushIntermediateToInstruction(complete);
}