Package org.candle.decompiler.intermediate.expression

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


  //New object instances.
  public void visitNEW(NEW instruction) {
    ObjectType type = instruction.getLoadClassType(this.context.getMethodGen().getConstantPool());
    Type t = instruction.getType(this.context.getMethodGen().getConstantPool());
    LOG.debug("New object: "+t +", "+type);
    NewInstance instance = new NewInstance(context.getCurrentInstruction(), type);
    context.getExpressions().push(instance);
  }
View Full Code Here

TOP

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

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.