public class com.oracle.svm.configure.config.ParserConfigurationAdapter implements com.oracle.svm.core.configure.ReflectionConfigurationParserDelegate<com.oracle.svm.configure.config.ConfigurationType>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.svm.configure.config.ParserConfigurationAdapter
  super_class: java.lang.Object
{
  private final com.oracle.svm.configure.config.TypeConfiguration configuration;
    descriptor: Lcom/oracle/svm/configure/config/TypeConfiguration;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.oracle.svm.configure.config.TypeConfiguration);
    descriptor: (Lcom/oracle/svm/configure/config/TypeConfiguration;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.TypeConfiguration configuration
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* configuration */
            putfield com.oracle.svm.configure.config.ParserConfigurationAdapter.configuration:Lcom/oracle/svm/configure/config/TypeConfiguration;
         2: .line 38
            return
        end local 1 // com.oracle.svm.configure.config.TypeConfiguration configuration
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    3     1  configuration  Lcom/oracle/svm/configure/config/TypeConfiguration;
    MethodParameters:
               Name  Flags
      configuration  

  public com.oracle.svm.core.TypeResult<com.oracle.svm.configure.config.ConfigurationType> resolveTypeResult(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/svm/core/TypeResult;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // java.lang.String typeName
         0: .line 42
            aload 0 /* this */
            getfield com.oracle.svm.configure.config.ParserConfigurationAdapter.configuration:Lcom/oracle/svm/configure/config/TypeConfiguration;
            aload 1 /* typeName */
            invokevirtual com.oracle.svm.configure.config.TypeConfiguration.get:(Ljava/lang/String;)Lcom/oracle/svm/configure/config/ConfigurationType;
            astore 2 /* type */
        start local 2 // com.oracle.svm.configure.config.ConfigurationType type
         1: .line 43
            aload 2 /* type */
            ifnull 2
            aload 2 /* type */
            goto 3
      StackMap locals: com.oracle.svm.configure.config.ConfigurationType
      StackMap stack:
         2: new com.oracle.svm.configure.config.ConfigurationType
            dup
            aload 1 /* typeName */
            invokespecial com.oracle.svm.configure.config.ConfigurationType.<init>:(Ljava/lang/String;)V
      StackMap locals:
      StackMap stack: com.oracle.svm.configure.config.ConfigurationType
         3: astore 3 /* result */
        start local 3 // com.oracle.svm.configure.config.ConfigurationType result
         4: .line 44
            aload 1 /* typeName */
            aload 3 /* result */
            invokestatic com.oracle.svm.core.TypeResult.forType:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/svm/core/TypeResult;
            areturn
        end local 3 // com.oracle.svm.configure.config.ConfigurationType result
        end local 2 // com.oracle.svm.configure.config.ConfigurationType type
        end local 1 // java.lang.String typeName
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    5     1  typeName  Ljava/lang/String;
            1    5     2      type  Lcom/oracle/svm/configure/config/ConfigurationType;
            4    5     3    result  Lcom/oracle/svm/configure/config/ConfigurationType;
    Signature: (Ljava/lang/String;)Lcom/oracle/svm/core/TypeResult<Lcom/oracle/svm/configure/config/ConfigurationType;>;
    MethodParameters:
          Name  Flags
      typeName  

  public void registerType(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 49
            aload 0 /* this */
            getfield com.oracle.svm.configure.config.ParserConfigurationAdapter.configuration:Lcom/oracle/svm/configure/config/TypeConfiguration;
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.TypeConfiguration.add:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
         1: .line 50
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerField(com.oracle.svm.configure.config.ConfigurationType, java.lang.String, boolean, boolean);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;ZZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
        start local 2 // java.lang.String fieldName
        start local 3 // boolean finalButWritable
        start local 4 // boolean allowUnsafeAccess
         0: .line 54
            aload 1 /* type */
            aload 2 /* fieldName */
            getstatic com.oracle.svm.configure.config.ConfigurationMemberKind.PRESENT:Lcom/oracle/svm/configure/config/ConfigurationMemberKind;
            iload 3 /* finalButWritable */
            iload 4 /* allowUnsafeAccess */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.addField:(Ljava/lang/String;Lcom/oracle/svm/configure/config/ConfigurationMemberKind;ZZ)V
         1: .line 55
            return
        end local 4 // boolean allowUnsafeAccess
        end local 3 // boolean finalButWritable
        end local 2 // java.lang.String fieldName
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1               type  Lcom/oracle/svm/configure/config/ConfigurationType;
            0    2     2          fieldName  Ljava/lang/String;
            0    2     3   finalButWritable  Z
            0    2     4  allowUnsafeAccess  Z
    MethodParameters:
                   Name  Flags
      type               
      fieldName          
      finalButWritable   
      allowUnsafeAccess  

  public boolean registerAllMethodsWithName(com.oracle.svm.configure.config.ConfigurationType, java.lang.String);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
        start local 2 // java.lang.String methodName
         0: .line 59
            aload 1 /* type */
            aload 2 /* methodName */
            getstatic com.oracle.svm.configure.config.ConfigurationMemberKind.PRESENT:Lcom/oracle/svm/configure/config/ConfigurationMemberKind;
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.addMethodsWithName:(Ljava/lang/String;Lcom/oracle/svm/configure/config/ConfigurationMemberKind;)V
         1: .line 60
            iconst_1
            ireturn
        end local 2 // java.lang.String methodName
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1        type  Lcom/oracle/svm/configure/config/ConfigurationType;
            0    2     2  methodName  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      type        
      methodName  

  public boolean registerAllConstructors(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 65
            aload 1 /* type */
            ldc "<init>"
            getstatic com.oracle.svm.configure.config.ConfigurationMemberKind.PRESENT:Lcom/oracle/svm/configure/config/ConfigurationMemberKind;
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.addMethodsWithName:(Ljava/lang/String;Lcom/oracle/svm/configure/config/ConfigurationMemberKind;)V
         1: .line 66
            iconst_1
            ireturn
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerMethod(com.oracle.svm.configure.config.ConfigurationType, java.lang.String, java.util.List<com.oracle.svm.configure.config.ConfigurationType>);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
        start local 2 // java.lang.String methodName
        start local 3 // java.util.List methodParameterTypes
         0: .line 71
            aload 1 /* type */
            aload 2 /* methodName */
            aload 3 /* methodParameterTypes */
            invokestatic com.oracle.svm.configure.config.ConfigurationMethod.toInternalParamsSignature:(Ljava/util/List;)Ljava/lang/String;
            getstatic com.oracle.svm.configure.config.ConfigurationMemberKind.PRESENT:Lcom/oracle/svm/configure/config/ConfigurationMemberKind;
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.addMethod:(Ljava/lang/String;Ljava/lang/String;Lcom/oracle/svm/configure/config/ConfigurationMemberKind;)V
         1: .line 72
            return
        end local 3 // java.util.List methodParameterTypes
        end local 2 // java.lang.String methodName
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1                  type  Lcom/oracle/svm/configure/config/ConfigurationType;
            0    2     2            methodName  Ljava/lang/String;
            0    2     3  methodParameterTypes  Ljava/util/List<Lcom/oracle/svm/configure/config/ConfigurationType;>;
    Signature: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;Ljava/util/List<Lcom/oracle/svm/configure/config/ConfigurationType;>;)V
    MethodParameters:
                      Name  Flags
      type                  
      methodName            
      methodParameterTypes  

  public void registerConstructor(com.oracle.svm.configure.config.ConfigurationType, java.util.List<com.oracle.svm.configure.config.ConfigurationType>);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
        start local 2 // java.util.List methodParameterTypes
         0: .line 76
            aload 1 /* type */
            ldc "<init>"
            aload 2 /* methodParameterTypes */
            invokestatic com.oracle.svm.configure.config.ConfigurationMethod.toInternalParamsSignature:(Ljava/util/List;)Ljava/lang/String;
            getstatic com.oracle.svm.configure.config.ConfigurationMemberKind.PRESENT:Lcom/oracle/svm/configure/config/ConfigurationMemberKind;
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.addMethod:(Ljava/lang/String;Ljava/lang/String;Lcom/oracle/svm/configure/config/ConfigurationMemberKind;)V
         1: .line 77
            return
        end local 2 // java.util.List methodParameterTypes
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1                  type  Lcom/oracle/svm/configure/config/ConfigurationType;
            0    2     2  methodParameterTypes  Ljava/util/List<Lcom/oracle/svm/configure/config/ConfigurationType;>;
    Signature: (Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/util/List<Lcom/oracle/svm/configure/config/ConfigurationType;>;)V
    MethodParameters:
                      Name  Flags
      type                  
      methodParameterTypes  

  public void registerPublicClasses(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 81
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllPublicClasses:()V
         1: .line 82
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerDeclaredClasses(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 86
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllDeclaredClasses:()V
         1: .line 87
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerPublicFields(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 91
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllPublicFields:()V
         1: .line 92
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerDeclaredFields(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 96
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllDeclaredFields:()V
         1: .line 97
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerPublicMethods(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 101
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllPublicMethods:()V
         1: .line 102
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerDeclaredMethods(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 106
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllDeclaredMethods:()V
         1: .line 107
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerPublicConstructors(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 111
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllPublicConstructors:()V
         1: .line 112
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public void registerDeclaredConstructors(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 116
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.setAllDeclaredConstructors:()V
         1: .line 117
            return
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    2     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public java.lang.String getTypeName(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 121
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ConfigurationType.getQualifiedJavaName:()Ljava/lang/String;
            areturn
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    1     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public java.lang.String getSimpleName(com.oracle.svm.configure.config.ConfigurationType);
    descriptor: (Lcom/oracle/svm/configure/config/ConfigurationType;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
        start local 1 // com.oracle.svm.configure.config.ConfigurationType type
         0: .line 126
            aload 0 /* this */
            aload 1 /* type */
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.getTypeName:(Lcom/oracle/svm/configure/config/ConfigurationType;)Ljava/lang/String;
            areturn
        end local 1 // com.oracle.svm.configure.config.ConfigurationType type
        end local 0 // com.oracle.svm.configure.config.ParserConfigurationAdapter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/configure/config/ParserConfigurationAdapter;
            0    1     1  type  Lcom/oracle/svm/configure/config/ConfigurationType;
    MethodParameters:
      Name  Flags
      type  

  public java.lang.String getSimpleName(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.getSimpleName:(Lcom/oracle/svm/configure/config/ConfigurationType;)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerDeclaredMethods(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerDeclaredMethods:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerDeclaredFields(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerDeclaredFields:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerConstructor(java.lang.Object, java.util.List);
    descriptor: (Ljava/lang/Object;Ljava/util/List;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            aload 2
            checkcast java.util.List
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerConstructor:(Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/util/List;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NoSuchMethodException

  public void registerMethod(java.lang.Object, java.lang.String, java.util.List);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;Ljava/util/List;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            aload 2
            aload 3
            checkcast java.util.List
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerMethod:(Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;Ljava/util/List;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NoSuchMethodException

  public void registerDeclaredClasses(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerDeclaredClasses:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerPublicMethods(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerPublicMethods:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.String getTypeName(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.getTypeName:(Lcom/oracle/svm/configure/config/ConfigurationType;)Ljava/lang/String;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerPublicFields(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerPublicFields:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerPublicConstructors(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerPublicConstructors:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerPublicClasses(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerPublicClasses:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean registerAllMethodsWithName(java.lang.Object, java.lang.String);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            aload 2
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerAllMethodsWithName:(Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean registerAllConstructors(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerAllConstructors:(Lcom/oracle/svm/configure/config/ConfigurationType;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerType(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerType:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void registerField(java.lang.Object, java.lang.String, boolean, boolean);
    descriptor: (Ljava/lang/Object;Ljava/lang/String;ZZ)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            aload 2
            iload 3
            iload 4
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerField:(Lcom/oracle/svm/configure/config/ConfigurationType;Ljava/lang/String;ZZ)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.NoSuchFieldException

  public void registerDeclaredConstructors(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast com.oracle.svm.configure.config.ConfigurationType
            invokevirtual com.oracle.svm.configure.config.ParserConfigurationAdapter.registerDeclaredConstructors:(Lcom/oracle/svm/configure/config/ConfigurationType;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Lcom/oracle/svm/core/configure/ReflectionConfigurationParserDelegate<Lcom/oracle/svm/configure/config/ConfigurationType;>;
SourceFile: "ParserConfigurationAdapter.java"