public class org.objectweb.asm.tree.TypeInsnNode 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.TypeInsnNode
  super_class: org.objectweb.asm.tree.AbstractInsnNode
{
  public java.lang.String desc;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public void <init>(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.TypeInsnNode this
        start local 1 // int opcode
        start local 2 // java.lang.String descriptor
         0: .line 56
            aload 0 /* this */
            iload 1 /* opcode */
            invokespecial org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
         1: .line 57
            aload 0 /* this */
            aload 2 /* descriptor */
            putfield org.objectweb.asm.tree.TypeInsnNode.desc:Ljava/lang/String;
         2: .line 58
            return
        end local 2 // java.lang.String descriptor
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.TypeInsnNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/objectweb/asm/tree/TypeInsnNode;
            0    3     1      opcode  I
            0    3     2  descriptor  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      opcode      final
      descriptor  final

  public void setOpcode(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.TypeInsnNode this
        start local 1 // int opcode
         0: .line 67
            aload 0 /* this */
            iload 1 /* opcode */
            putfield org.objectweb.asm.tree.TypeInsnNode.opcode:I
         1: .line 68
            return
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.TypeInsnNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/TypeInsnNode;
            0    2     1  opcode  I
    MethodParameters:
        Name  Flags
      opcode  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.TypeInsnNode this
         0: .line 72
            iconst_3
            ireturn
        end local 0 // org.objectweb.asm.tree.TypeInsnNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/TypeInsnNode;

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.TypeInsnNode this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
         0: .line 77
            aload 1 /* methodVisitor */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TypeInsnNode.opcode:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TypeInsnNode.desc:Ljava/lang/String;
            invokevirtual org.objectweb.asm.MethodVisitor.visitTypeInsn:(ILjava/lang/String;)V
         1: .line 78
            aload 0 /* this */
            aload 1 /* methodVisitor */
            invokevirtual org.objectweb.asm.tree.TypeInsnNode.acceptAnnotations:(Lorg/objectweb/asm/MethodVisitor;)V
         2: .line 79
            return
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // org.objectweb.asm.tree.TypeInsnNode this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/objectweb/asm/tree/TypeInsnNode;
            0    3     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=4, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.TypeInsnNode this
        start local 1 // java.util.Map clonedLabels
         0: .line 83
            new org.objectweb.asm.tree.TypeInsnNode
            dup
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TypeInsnNode.opcode:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.TypeInsnNode.desc:Ljava/lang/String;
            invokespecial org.objectweb.asm.tree.TypeInsnNode.<init>:(ILjava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.objectweb.asm.tree.TypeInsnNode.cloneAnnotations:(Lorg/objectweb/asm/tree/AbstractInsnNode;)Lorg/objectweb/asm/tree/AbstractInsnNode;
            areturn
        end local 1 // java.util.Map clonedLabels
        end local 0 // org.objectweb.asm.tree.TypeInsnNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Lorg/objectweb/asm/tree/TypeInsnNode;
            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
}
SourceFile: "TypeInsnNode.java"