Example usage for org.objectweb.asm.tree TryCatchBlockNode subclass-usage

List of usage examples for org.objectweb.asm.tree TryCatchBlockNode subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm.tree TryCatchBlockNode subclass-usage.

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