public class org.objectweb.asm.tree.LabelNode extends org.objectweb.asm.tree.AbstractInsnNode
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.LabelNode
  super_class: org.objectweb.asm.tree.AbstractInsnNode
{
  private org.objectweb.asm.Label value;
    descriptor: Lorg/objectweb/asm/Label;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.LabelNode this
         0: .line 40
            aload 0 /* this */
            iconst_m1
            invokespecial org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 41
            return
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/LabelNode;

  public void <init>(org.objectweb.asm.Label);
    descriptor: (Lorg/objectweb/asm/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.LabelNode this
        start local 1 // org.objectweb.asm.Label label
         0: .line 44
            aload 0 /* this */
            iconst_m1
            invokespecial org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 45
            aload 0 /* this */
            aload 1 /* label */
            putfield org.objectweb.asm.tree.LabelNode.value:Lorg/objectweb/asm/Label;
         2: .line 46
            return
        end local 1 // org.objectweb.asm.Label label
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/objectweb/asm/tree/LabelNode;
            0    3     1  label  Lorg/objectweb/asm/Label;
    MethodParameters:
       Name  Flags
      label  final

  public int getType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.LabelNode this
         0: .line 50
            bipush 8
            ireturn
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/LabelNode;

  public org.objectweb.asm.Label getLabel();
    descriptor: ()Lorg/objectweb/asm/Label;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.LabelNode this
         0: .line 60
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LabelNode.value:Lorg/objectweb/asm/Label;
            ifnonnull 2
         1: .line 61
            aload 0 /* this */
            new org.objectweb.asm.Label
            dup
            invokespecial org.objectweb.asm.Label.<init>:()V
            putfield org.objectweb.asm.tree.LabelNode.value:Lorg/objectweb/asm/Label;
         2: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.LabelNode.value:Lorg/objectweb/asm/Label;
            areturn
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/tree/LabelNode;

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.LabelNode this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 68
            aload 1 /* methodVisitor */
            aload 0 /* this */
            invokevirtual org.objectweb.asm.tree.LabelNode.getLabel:()Lorg/objectweb/asm/Label;
            invokevirtual org.objectweb.asm.MethodVisitor.visitLabel:(Lorg/objectweb/asm/Label;)V
         1: .line 69
            return
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/objectweb/asm/tree/LabelNode;
            0    2     1  methodVisitor  Lorg/objectweb/asm/MethodVisitor;
    MethodParameters:
               Name  Flags
      methodVisitor  final

  public org.objectweb.asm.tree.AbstractInsnNode clone(java.util.Map<org.objectweb.asm.tree.LabelNode, org.objectweb.asm.tree.LabelNode>);
    descriptor: (Ljava/util/Map;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.LabelNode this
        start local 1 // java.util.Map clonedLabels
         0: .line 73
            aload 1 /* clonedLabels */
            aload 0 /* this */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.AbstractInsnNode
            areturn
        end local 1 // java.util.Map clonedLabels
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/objectweb/asm/tree/LabelNode;
            0    1     1  clonedLabels  Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;
    Signature: (Ljava/util/Map<Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;>;)Lorg/objectweb/asm/tree/AbstractInsnNode;
    MethodParameters:
              Name  Flags
      clonedLabels  final

  public void resetLabel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.LabelNode this
         0: .line 77
            aload 0 /* this */
            aconst_null
            putfield org.objectweb.asm.tree.LabelNode.value:Lorg/objectweb/asm/Label;
         1: .line 78
            return
        end local 0 // org.objectweb.asm.tree.LabelNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/LabelNode;
}
SourceFile: "LabelNode.java"