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);
}