public abstract class com.sun.tools.javac.code.Type$DelegatedType extends com.sun.tools.javac.code.Type
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.tools.javac.code.Type$DelegatedType
  super_class: com.sun.tools.javac.code.Type
{
  public com.sun.tools.javac.code.Type qtype;
    descriptor: Lcom/sun/tools/javac/code/Type;
    flags: (0x0001) ACC_PUBLIC

  public com.sun.tools.javac.code.TypeTag tag;
    descriptor: Lcom/sun/tools/javac/code/TypeTag;
    flags: (0x0001) ACC_PUBLIC

  public void <init>(com.sun.tools.javac.code.TypeTag, com.sun.tools.javac.code.Type);
    descriptor: (Lcom/sun/tools/javac/code/TypeTag;Lcom/sun/tools/javac/code/Type;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
        start local 1 // com.sun.tools.javac.code.TypeTag tag
        start local 2 // com.sun.tools.javac.code.Type qtype
         0: .line 1794
            aload 0 /* this */
            aload 1 /* tag */
            aload 2 /* qtype */
            getstatic com.sun.tools.javac.code.TypeMetadata.EMPTY:Lcom/sun/tools/javac/code/TypeMetadata;
            invokespecial com.sun.tools.javac.code.Type$DelegatedType.<init>:(Lcom/sun/tools/javac/code/TypeTag;Lcom/sun/tools/javac/code/Type;Lcom/sun/tools/javac/code/TypeMetadata;)V
         1: .line 1795
            return
        end local 2 // com.sun.tools.javac.code.Type qtype
        end local 1 // com.sun.tools.javac.code.TypeTag tag
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/tools/javac/code/Type$DelegatedType;
            0    2     1    tag  Lcom/sun/tools/javac/code/TypeTag;
            0    2     2  qtype  Lcom/sun/tools/javac/code/Type;
    MethodParameters:
       Name  Flags
      tag    
      qtype  

  public void <init>(com.sun.tools.javac.code.TypeTag, com.sun.tools.javac.code.Type, com.sun.tools.javac.code.TypeMetadata);
    descriptor: (Lcom/sun/tools/javac/code/TypeTag;Lcom/sun/tools/javac/code/Type;Lcom/sun/tools/javac/code/TypeMetadata;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
        start local 1 // com.sun.tools.javac.code.TypeTag tag
        start local 2 // com.sun.tools.javac.code.Type qtype
        start local 3 // com.sun.tools.javac.code.TypeMetadata metadata
         0: .line 1799
            aload 0 /* this */
            aload 2 /* qtype */
            getfield com.sun.tools.javac.code.Type.tsym:Lcom/sun/tools/javac/code/Symbol$TypeSymbol;
            aload 3 /* metadata */
            invokespecial com.sun.tools.javac.code.Type.<init>:(Lcom/sun/tools/javac/code/Symbol$TypeSymbol;Lcom/sun/tools/javac/code/TypeMetadata;)V
         1: .line 1800
            aload 0 /* this */
            aload 1 /* tag */
            putfield com.sun.tools.javac.code.Type$DelegatedType.tag:Lcom/sun/tools/javac/code/TypeTag;
         2: .line 1801
            aload 0 /* this */
            aload 2 /* qtype */
            putfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
         3: .line 1802
            return
        end local 3 // com.sun.tools.javac.code.TypeMetadata metadata
        end local 2 // com.sun.tools.javac.code.Type qtype
        end local 1 // com.sun.tools.javac.code.TypeTag tag
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/sun/tools/javac/code/Type$DelegatedType;
            0    4     1       tag  Lcom/sun/tools/javac/code/TypeTag;
            0    4     2     qtype  Lcom/sun/tools/javac/code/Type;
            0    4     3  metadata  Lcom/sun/tools/javac/code/TypeMetadata;
    MethodParameters:
          Name  Flags
      tag       
      qtype     
      metadata  

  public com.sun.tools.javac.code.TypeTag getTag();
    descriptor: ()Lcom/sun/tools/javac/code/TypeTag;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1804
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.tag:Lcom/sun/tools/javac/code/TypeTag;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1806
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public com.sun.tools.javac.util.List<com.sun.tools.javac.code.Type> getTypeArguments();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1807
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getTypeArguments:()Lcom/sun/tools/javac/util/List;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;
    Signature: ()Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Type;>;

  public com.sun.tools.javac.code.Type getEnclosingType();
    descriptor: ()Lcom/sun/tools/javac/code/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1808
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getEnclosingType:()Lcom/sun/tools/javac/code/Type;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public com.sun.tools.javac.util.List<com.sun.tools.javac.code.Type> getParameterTypes();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1809
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getParameterTypes:()Lcom/sun/tools/javac/util/List;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;
    Signature: ()Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Type;>;

  public com.sun.tools.javac.code.Type getReturnType();
    descriptor: ()Lcom/sun/tools/javac/code/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1810
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getReturnType:()Lcom/sun/tools/javac/code/Type;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public com.sun.tools.javac.code.Type getReceiverType();
    descriptor: ()Lcom/sun/tools/javac/code/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1811
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getReceiverType:()Lcom/sun/tools/javac/code/Type;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public com.sun.tools.javac.util.List<com.sun.tools.javac.code.Type> getThrownTypes();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1812
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getThrownTypes:()Lcom/sun/tools/javac/util/List;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;
    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.Type> allparams();
    descriptor: ()Lcom/sun/tools/javac/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1813
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.allparams:()Lcom/sun/tools/javac/util/List;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;
    Signature: ()Lcom/sun/tools/javac/util/List<Lcom/sun/tools/javac/code/Type;>;

  public com.sun.tools.javac.code.Type getUpperBound();
    descriptor: ()Lcom/sun/tools/javac/code/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1814
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.getUpperBound:()Lcom/sun/tools/javac/code/Type;
            areturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;

  public boolean isErroneous();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.code.Type$DelegatedType this
         0: .line 1815
            aload 0 /* this */
            getfield com.sun.tools.javac.code.Type$DelegatedType.qtype:Lcom/sun/tools/javac/code/Type;
            invokevirtual com.sun.tools.javac.code.Type.isErroneous:()Z
            ireturn
        end local 0 // com.sun.tools.javac.code.Type$DelegatedType this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/javac/code/Type$DelegatedType;
}
SourceFile: "Type.java"
NestHost: com.sun.tools.javac.code.Type
InnerClasses:
  public abstract TypeSymbol = com.sun.tools.javac.code.Symbol$TypeSymbol of com.sun.tools.javac.code.Symbol
  public abstract DelegatedType = com.sun.tools.javac.code.Type$DelegatedType of com.sun.tools.javac.code.Type