use of org.candle.decompiler.intermediate.expression.Return in project candle-decompiler by bradsdavis.
the class MethodIntermediateVisitor method visitRETURN.
public void visitRETURN(RETURN instruction) {
Return ret = new Return(context.getCurrentInstruction());
processReturn(ret);
}
use of org.candle.decompiler.intermediate.expression.Return in project candle-decompiler by bradsdavis.
the class MethodIntermediateVisitor method visitDRETURN.
public void visitDRETURN(DRETURN instruction) {
Expression exp = context.getExpressions().pop();
Return ret = new Return(context.getCurrentInstruction(), exp);
processReturn(ret);
}
use of org.candle.decompiler.intermediate.expression.Return in project candle-decompiler by bradsdavis.
the class MethodIntermediateVisitor method visitFRETURN.
public void visitFRETURN(FRETURN instruction) {
Expression exp = context.getExpressions().pop();
Return ret = new Return(context.getCurrentInstruction(), exp);
processReturn(ret);
}
Aggregations