List of usage examples for org.objectweb.asm.tree TryCatchBlockNode subclass-usage
From source file jaspex.speculation.newspec.FlowFrame.java
/** TryCatchBlockNode que verifica que start != end **/ class SafeTryCatchBlockNode extends TryCatchBlockNode { public SafeTryCatchBlockNode(LabelNode start, LabelNode end, LabelNode handler, String type) { super(start, end, handler, type); if (start.equals(end)) throw new AssertionError();