public class org.objectweb.asm.tree.TryCatchBlockNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.TryCatchBlockNode
  super_class: java.lang.Object
{
  public org.objectweb.asm.tree.LabelNode start;
    descriptor: Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  public org.objectweb.asm.tree.LabelNode end;
    descriptor: Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  public org.objectweb.asm.tree.LabelNode handler;
    descriptor: Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0001) ACC_PUBLIC

  public java.lang.String type;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public void <init>(org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode, java.lang.String);
    descriptor: (Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.TryCatchBlockNode this
        start local 1 // org.objectweb.asm.tree.LabelNode start
        start local 2 // org.objectweb.asm.tree.LabelNode end
        start local 3 // org.objectweb.asm.tree.LabelNode handler
        start local 4 // java.lang.String type
         0: .line 76
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 78
            aload 0 /* this */
            aload 1 /* start */
            putfield org.objectweb.asm.tree.TryCatchBlockNode.start:Lorg/objectweb/asm/tree/LabelNode;
         2: .line 79
            aload 0 /* this */
            aload 2 /* end */
            putfield org.objectweb.asm.tree.TryCatchBlockNode.end:Lorg/objectweb/asm/tree/LabelNode;
         3: .line 80
            aload 0 /* this */
            aload 3 /* handler */
            putfield org.objectweb.asm.tree.TryCatchBlockNode.handler:Lorg/objectweb/asm/tree/LabelNode;
         4: .line 81
            aload 0 /* this */
            aload 4 /* type */
            putfield org.objectweb.asm.tree.TryCatchBlockNode.type:Ljava/lang/String;
         5: .line 82
            return
        end local 4 // java.lang.String type
        end local 3 // org.objectweb.asm.tree.LabelNode handler
        end local 2 // org.objectweb.asm.tree.LabelNode end
        end local 1 // org.objectweb.asm.tree.LabelNode start
        end local 0 // org.objectweb.asm.tree.TryCatchBlockNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/objectweb/asm/tree/TryCatchBlockNode;
            0    6     1    start  Lorg/objectweb/asm/tree/LabelNode;
            0    6     2      end  Lorg/objectweb/asm/tree/LabelNode;
            0    6     3  handler  Lorg/objectweb/asm/tree/LabelNode;
            0    6     4     type  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      start    final
      end      final
      handler  final
      type     final

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.TryCatchBlockNode this
        start local 1 // org.objectweb.asm.MethodVisitor mv
         0: .line 91
            aload 1 /* mv */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TryCatchBlockNode.start:Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TryCatchBlockNode.end:Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
         1: .line 92
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TryCatchBlockNode.handler:Lorg/objectweb/asm/tree/LabelNode;
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: org.objectweb.asm.tree.TryCatchBlockNode org.objectweb.asm.MethodVisitor
      StackMap stack: org.objectweb.asm.MethodVisitor org.objectweb.asm.Label org.objectweb.asm.Label
         2: aload 0 /* this */
            getfield org.objectweb.asm.tree.TryCatchBlockNode.handler:Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
      StackMap locals: org.objectweb.asm.tree.TryCatchBlockNode org.objectweb.asm.MethodVisitor
      StackMap stack: org.objectweb.asm.MethodVisitor org.objectweb.asm.Label org.objectweb.asm.Label org.objectweb.asm.Label
         3: aload 0 /* this */
            getfield org.objectweb.asm.tree.TryCatchBlockNode.type:Ljava/lang/String;
         4: .line 91
            invokevirtual org.objectweb.asm.MethodVisitor.visitTryCatchBlock:(Lorg/objectweb/asm/Label;Lorg/objectweb/asm/Label;Lorg/objectweb/asm/Label;Ljava/lang/String;)V
         5: .line 93
            return
        end local 1 // org.objectweb.asm.MethodVisitor mv
        end local 0 // org.objectweb.asm.tree.TryCatchBlockNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/objectweb/asm/tree/TryCatchBlockNode;
            0    6     1    mv  Lorg/objectweb/asm/MethodVisitor;
    MethodParameters:
      Name  Flags
      mv    final
}
SourceFile: "TryCatchBlockNode.java"