public class com.sun.tools.javac.code.Symbol$TypeVariableSymbol extends com.sun.tools.javac.code.Symbol$TypeSymbol implements javax.lang.model.element.TypeParameterElement
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.javac.code.Symbol$TypeVariableSymbol
  super_class: com.sun.tools.javac.code.Symbol$TypeSymbol
{
  public void <init>(long, com.sun.tools.javac.util.Name, com.sun.tools.javac.code.Type, com.sun.tools.javac.code.Symbol);
    descriptor: (JLcom/sun/tools/javac/util/Name;Lcom/sun/tools/javac/code/Type;Lcom/sun/tools/javac/code/Symbol;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=5
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
        start local 1 // long flags
        start local 3 // com.sun.tools.javac.util.Name name
        start local 4 // com.sun.tools.javac.code.Type type
        start local 5 // com.sun.tools.javac.code.Symbol owner
         0: .line 875
            aload 0 /* this */
            getstatic com.sun.tools.javac.code.Kinds$Kind.TYP:Lcom/sun/tools/javac/code/Kinds$Kind;
            lload 1 /* flags */
            aload 3 /* name */
            aload 4 /* type */
            aload 5 /* owner */
            invokespecial com.sun.tools.javac.code.Symbol$TypeSymbol.<init>:(Lcom/sun/tools/javac/code/Kinds$Kind;JLcom/sun/tools/javac/util/Name;Lcom/sun/tools/javac/code/Type;Lcom/sun/tools/javac/code/Symbol;)V
         1: .line 876
            return
        end local 5 // com.sun.tools.javac.code.Symbol owner
        end local 4 // com.sun.tools.javac.code.Type type
        end local 3 // com.sun.tools.javac.util.Name name
        end local 1 // long flags
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            0    2     1  flags  J
            0    2     3   name  Lcom/sun/tools/javac/util/Name;
            0    2     4   type  Lcom/sun/tools/javac/code/Type;
            0    2     5  owner  Lcom/sun/tools/javac/code/Symbol;
    MethodParameters:
       Name  Flags
      flags  
      name   
      type   
      owner  

  public javax.lang.model.element.ElementKind getKind();
    descriptor: ()Ljavax/lang/model/element/ElementKind;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
         0: .line 880
            getstatic javax.lang.model.element.ElementKind.TYPE_PARAMETER:Ljavax/lang/model/element/ElementKind;
            areturn
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;

  public com.sun.tools.javac.code.Symbol getGenericElement();
    descriptor: ()Lcom/sun/tools/javac/code/Symbol;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
         0: .line 885
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.owner:Lcom/sun/tools/javac/code/Symbol;
            areturn
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;

  public com.sun.tools.javac.util.List<com.sun.tools.javac.code.Type> getBounds();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
         0: .line 890
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.type:Lcom/sun/tools/javac/code/Type;
            checkcast com.sun.tools.javac.code.Type$TypeVar
            astore 1 /* t */
        start local 1 // com.sun.tools.javac.code.Type$TypeVar t
         1: .line 891
            aload 1 /* t */
            invokevirtual com.sun.tools.javac.code.Type$TypeVar.getUpperBound:()Lcom/sun/tools/javac/code/Type;
            astore 2 /* bound */
        start local 2 // com.sun.tools.javac.code.Type bound
         2: .line 892
            aload 2 /* bound */
            invokevirtual com.sun.tools.javac.code.Type.isCompound:()Z
            ifne 4
         3: .line 893
            aload 2 /* bound */
            invokestatic com.sun.tools.javac.util.List.of:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            areturn
         4: .line 894
      StackMap locals: com.sun.tools.javac.code.Type$TypeVar com.sun.tools.javac.code.Type
      StackMap stack:
            aload 2 /* bound */
            checkcast com.sun.tools.javac.code.Type$ClassType
            astore 3 /* ct */
        start local 3 // com.sun.tools.javac.code.Type$ClassType ct
         5: .line 895
            aload 3 /* ct */
            getfield com.sun.tools.javac.code.Type$ClassType.tsym:Lcom/sun/tools/javac/code/Symbol$TypeSymbol;
            getfield com.sun.tools.javac.code.Symbol$TypeSymbol.erasure_field:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.isInterface:()Z
            ifne 7
         6: .line 896
            aload 3 /* ct */
            getfield com.sun.tools.javac.code.Type$ClassType.interfaces_field:Lcom/sun/tools/javac/util/List;
            aload 3 /* ct */
            getfield com.sun.tools.javac.code.Type$ClassType.supertype_field:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.util.List.prepend:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            areturn
         7: .line 900
      StackMap locals: com.sun.tools.javac.code.Type$ClassType
      StackMap stack:
            aload 3 /* ct */
            getfield com.sun.tools.javac.code.Type$ClassType.interfaces_field:Lcom/sun/tools/javac/util/List;
            areturn
        end local 3 // com.sun.tools.javac.code.Type$ClassType ct
        end local 2 // com.sun.tools.javac.code.Type bound
        end local 1 // com.sun.tools.javac.code.Type$TypeVar t
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            1    8     1      t  Lcom/sun/tools/javac/code/Type$TypeVar;
            2    8     2  bound  Lcom/sun/tools/javac/code/Type;
            5    8     3     ct  Lcom/sun/tools/javac/code/Type$ClassType;
    Signature: ()Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Type;>;

  public com.sun.tools.javac.util.List<com.sun.tools.javac.code.Attribute$Compound> getAnnotationMirrors();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
         0: .line 908
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.owner:Lcom/sun/tools/javac/code/Symbol;
            invokevirtual com.sun.tools.javac.code.Symbol.getRawTypeAttributes:()Lcom/sun/tools/javac/util/List;
            astore 1 /* candidates */
        start local 1 // com.sun.tools.javac.util.List candidates
         1: .line 909
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.owner:Lcom/sun/tools/javac/code/Symbol;
            invokevirtual com.sun.tools.javac.code.Symbol.getTypeParameters:()Lcom/sun/tools/javac/util/List;
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.List.indexOf:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         2: .line 910
            invokestatic com.sun.tools.javac.util.List.nil:()Lcom/sun/tools/javac/util/List;
            astore 3 /* res */
        start local 3 // com.sun.tools.javac.util.List res
         3: .line 911
            aload 1 /* candidates */
            invokevirtual com.sun.tools.javac.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 7
      StackMap locals: com.sun.tools.javac.code.Symbol$TypeVariableSymbol com.sun.tools.javac.util.List int com.sun.tools.javac.util.List top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.javac.code.Attribute$TypeCompound
            astore 4 /* a */
        start local 4 // com.sun.tools.javac.code.Attribute$TypeCompound a
         5: .line 912
            aload 0 /* this */
            aload 4 /* a */
            iload 2 /* index */
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.isCurrentSymbolsAnnotation:(Lcom/sun/tools/javac/code/Attribute$TypeCompound;I)Z
            ifeq 7
         6: .line 913
            aload 3 /* res */
            aload 4 /* a */
            invokevirtual com.sun.tools.javac.util.List.prepend:(Ljava/lang/Object;)Lcom/sun/tools/javac/util/List;
            astore 3 /* res */
        end local 4 // com.sun.tools.javac.code.Attribute$TypeCompound a
         7: .line 911
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 916
            aload 3 /* res */
            invokevirtual com.sun.tools.javac.util.List.reverse:()Lcom/sun/tools/javac/util/List;
            areturn
        end local 3 // com.sun.tools.javac.util.List res
        end local 2 // int index
        end local 1 // com.sun.tools.javac.util.List candidates
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            1    9     1  candidates  Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Attribute$TypeCompound;>;
            2    9     2       index  I
            3    9     3         res  Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Attribute$Compound;>;
            5    7     4           a  Lcom/sun/tools/javac/code/Attribute$TypeCompound;
    Signature: ()Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Attribute$Compound;>;

  public <A extends java.lang.annotation.Annotation> com.sun.tools.javac.code.Attribute$Compound getAttribute(java.lang.Class<A>);
    descriptor: (Ljava/lang/Class;)Lcom/sun/tools/javac/code/Attribute$Compound;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
        start local 1 // java.lang.Class annoType
         0: .line 922
            aload 1 /* annoType */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         1: .line 926
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.owner:Lcom/sun/tools/javac/code/Symbol;
            invokevirtual com.sun.tools.javac.code.Symbol.getRawTypeAttributes:()Lcom/sun/tools/javac/util/List;
            astore 3 /* candidates */
        start local 3 // com.sun.tools.javac.util.List candidates
         2: .line 927
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Symbol$TypeVariableSymbol.owner:Lcom/sun/tools/javac/code/Symbol;
            invokevirtual com.sun.tools.javac.code.Symbol.getTypeParameters:()Lcom/sun/tools/javac/util/List;
            aload 0 /* this */
            invokevirtual com.sun.tools.javac.util.List.indexOf:(Ljava/lang/Object;)I
            istore 4 /* index */
        start local 4 // int index
         3: .line 928
            aload 3 /* candidates */
            invokevirtual com.sun.tools.javac.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 8
      StackMap locals: com.sun.tools.javac.code.Symbol$TypeVariableSymbol java.lang.Class java.lang.String com.sun.tools.javac.util.List int top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.javac.code.Attribute$TypeCompound
            astore 5 /* anno */
        start local 5 // com.sun.tools.javac.code.Attribute$TypeCompound anno
         5: .line 929
            aload 0 /* this */
            aload 5 /* anno */
            iload 4 /* index */
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.isCurrentSymbolsAnnotation:(Lcom/sun/tools/javac/code/Attribute$TypeCompound;I)Z
            ifeq 8
         6: .line 930
            aload 2 /* name */
            aload 5 /* anno */
            getfield com.sun.tools.javac.code.Attribute$TypeCompound.type:Lcom/sun/tools/javac/code/Type;
            getfield com.sun.tools.javac.code.Type.tsym:Lcom/sun/tools/javac/code/Symbol$TypeSymbol;
            invokevirtual com.sun.tools.javac.code.Symbol$TypeSymbol.flatName:()Lcom/sun/tools/javac/util/Name;
            invokevirtual java.lang.String.contentEquals:(Ljava/lang/CharSequence;)Z
            ifeq 8
         7: .line 931
            aload 5 /* anno */
            areturn
        end local 5 // com.sun.tools.javac.code.Attribute$TypeCompound anno
         8: .line 928
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 933
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // com.sun.tools.javac.util.List candidates
        end local 2 // java.lang.String name
        end local 1 // java.lang.Class annoType
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            0   10     1    annoType  Ljava/lang/Class<TA;>;
            1   10     2        name  Ljava/lang/String;
            2   10     3  candidates  Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Attribute$TypeCompound;>;
            3   10     4       index  I
            5    8     5        anno  Lcom/sun/tools/javac/code/Attribute$TypeCompound;
    Signature: <A::Ljava/lang/annotation/Annotation;>(Ljava/lang/Class<TA;>;)Lcom/sun/tools/javac/code/Attribute$Compound;
    MethodParameters:
          Name  Flags
      annoType  

  boolean isCurrentSymbolsAnnotation(com.sun.tools.javac.code.Attribute$TypeCompound, int);
    descriptor: (Lcom/sun/tools/javac/code/Attribute$TypeCompound;I)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
        start local 1 // com.sun.tools.javac.code.Attribute$TypeCompound anno
        start local 2 // int index
         0: .line 937
            aload 1 /* anno */
            getfield com.sun.tools.javac.code.Attribute$TypeCompound.position:Lcom/sun/tools/javac/code/TypeAnnotationPosition;
            getfield com.sun.tools.javac.code.TypeAnnotationPosition.type:Lcom/sun/tools/javac/code/TargetType;
            getstatic com.sun.tools.javac.code.TargetType.CLASS_TYPE_PARAMETER:Lcom/sun/tools/javac/code/TargetType;
            if_acmpeq 2
         1: .line 938
            aload 1 /* anno */
            getfield com.sun.tools.javac.code.Attribute$TypeCompound.position:Lcom/sun/tools/javac/code/TypeAnnotationPosition;
            getfield com.sun.tools.javac.code.TypeAnnotationPosition.type:Lcom/sun/tools/javac/code/TargetType;
            getstatic com.sun.tools.javac.code.TargetType.METHOD_TYPE_PARAMETER:Lcom/sun/tools/javac/code/TargetType;
            if_acmpne 4
         2: .line 939
      StackMap locals:
      StackMap stack:
            aload 1 /* anno */
            getfield com.sun.tools.javac.code.Attribute$TypeCompound.position:Lcom/sun/tools/javac/code/TypeAnnotationPosition;
            getfield com.sun.tools.javac.code.TypeAnnotationPosition.parameter_index:I
            iload 2 /* index */
            if_icmpne 4
         3: .line 937
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // int index
        end local 1 // com.sun.tools.javac.code.Attribute$TypeCompound anno
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            0    5     1   anno  Lcom/sun/tools/javac/code/Attribute$TypeCompound;
            0    5     2  index  I
    MethodParameters:
       Name  Flags
      anno   
      index  

  public <R, P> R accept(javax.lang.model.element.ElementVisitor<R, P>, );
    descriptor: (Ljavax/lang/model/element/ElementVisitor;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
        start local 1 // javax.lang.model.element.ElementVisitor v
        start local 2 // java.lang.Object p
         0: .line 945
            aload 1 /* v */
            aload 0 /* this */
            aload 2 /* p */
            invokeinterface javax.lang.model.element.ElementVisitor.visitTypeParameter:(Ljavax/lang/model/element/TypeParameterElement;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 2 // java.lang.Object p
        end local 1 // javax.lang.model.element.ElementVisitor v
        end local 0 // com.sun.tools.javac.code.Symbol$TypeVariableSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Symbol$TypeVariableSymbol;
            0    1     1     v  Ljavax/lang/model/element/ElementVisitor<TR;TP;>;
            0    1     2     p  TP;
    Signature: <R:Ljava/lang/Object;P:Ljava/lang/Object;>(Ljavax/lang/model/element/ElementVisitor<TR;TP;>;TP;)TR;
    MethodParameters:
      Name  Flags
      v     
      p     

  public java.util.List getAnnotationMirrors();
    descriptor: ()Ljava/util/List;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.getAnnotationMirrors:()Lcom/sun/tools/javac/util/List;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public javax.lang.model.element.Element getGenericElement();
    descriptor: ()Ljavax/lang/model/element/Element;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.getGenericElement:()Lcom/sun/tools/javac/code/Symbol;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public javax.lang.model.type.TypeMirror asType();
    descriptor: ()Ljavax/lang/model/type/TypeMirror;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.asType:()Lcom/sun/tools/javac/code/Type;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public javax.lang.model.element.Element getEnclosingElement();
    descriptor: ()Ljavax/lang/model/element/Element;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.getEnclosingElement:()Lcom/sun/tools/javac/code/Symbol;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.List getBounds();
    descriptor: ()Ljava/util/List;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.sun.tools.javac.code.Symbol$TypeVariableSymbol.getBounds:()Lcom/sun/tools/javac/util/List;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Symbol.java"
NestHost: com.sun.tools.javac.code.Symbol
InnerClasses:
  public Compound = com.sun.tools.javac.code.Attribute$Compound of com.sun.tools.javac.code.Attribute
  public TypeCompound = com.sun.tools.javac.code.Attribute$TypeCompound of com.sun.tools.javac.code.Attribute
  public final Kind = com.sun.tools.javac.code.Kinds$Kind of com.sun.tools.javac.code.Kinds
  public abstract TypeSymbol = com.sun.tools.javac.code.Symbol$TypeSymbol of com.sun.tools.javac.code.Symbol
  public TypeVariableSymbol = com.sun.tools.javac.code.Symbol$TypeVariableSymbol of com.sun.tools.javac.code.Symbol
  public ClassType = com.sun.tools.javac.code.Type$ClassType of com.sun.tools.javac.code.Type
  public TypeVar = com.sun.tools.javac.code.Type$TypeVar of com.sun.tools.javac.code.Type