use of org.candle.decompiler.intermediate.expression.ArrayLength in project candle-decompiler by bradsdavis.
the class MethodIntermediateVisitor method visitARRAYLENGTH.
// array length instruction
public void visitARRAYLENGTH(ARRAYLENGTH instruction) {
Expression target = context.getExpressions().pop();
ArrayLength arrayLength = new ArrayLength(context.getCurrentInstruction(), target);
context.getExpressions().push(arrayLength);
}
Aggregations