Package org.candle.decompiler.intermediate.expression

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


    handleSwitch();
  }

  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.expression.Switch

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.