Package org.candle.decompiler.intermediate.expression

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


      //TODO: Figure out why the dup / new causes issues.
      if(target instanceof NewInstance) {
        //get rid of this.
        context.getExpressions().pop();
      }
      methodInvocation = new ConstructorInvocation(context.getCurrentInstruction(), target, methodName, parameters);
    }
    else {
      methodInvocation = new MethodInvocation(context.getCurrentInstruction(), target, methodName, parameters);
    }
   
View Full Code Here

TOP

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

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.