Package org.candle.decompiler.intermediate.code

Examples of org.candle.decompiler.intermediate.code.MultiBranchIntermediate


  public void handleSwitch() {
    Expression switchVal = context.getExpressions().pop();
    Switch switchExpression = new Switch(context.getCurrentInstruction(), switchVal);

    MultiBranchIntermediate mbi = new MultiBranchIntermediate(context.getCurrentInstruction(), switchExpression);
    context.pushIntermediateToInstruction(mbi);
  }
View Full Code Here

TOP

Related Classes of org.candle.decompiler.intermediate.code.MultiBranchIntermediate

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.