Package org.candle.decompiler.intermediate.expression

Examples of org.candle.decompiler.intermediate.expression.ArrayLength


  }

  //array length instruction
  public void visitARRAYLENGTH(ARRAYLENGTH instruction) {
    Expression target = context.getExpressions().pop();
    ArrayLength arrayLength = new ArrayLength(context.getCurrentInstruction(), target);
   
    context.getExpressions().push(arrayLength);
  }
View Full Code Here

TOP

Related Classes of org.candle.decompiler.intermediate.expression.ArrayLength

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.