sp-04/src/ch/usi/inf/sp/cfg/builder/SwitchInstructionNodeInfo.java

14 lines
341 B
Java
Raw Normal View History

2023-10-18 21:10:43 +00:00
package ch.usi.inf.sp.cfg.builder;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.LabelNode;
public interface SwitchInstructionNodeInfo {
AbstractInsnNode getNode();
int getCaseCount();
LabelNode getLabelForCase(int index);
String getKeyForCase(int index);
LabelNode getDefaultCase();
}