public final class org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
  super_class: java.lang.Object
{
  private final boolean eagerResolving;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean unresolvedIsError;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode bytecodeExceptionMode;
    descriptor: Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean omitAssertions;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.List<jdk.vm.ci.meta.ResolvedJavaType> skippedExceptionTypes;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljdk/vm/ci/meta/ResolvedJavaType;>;

  private final boolean insertFullInfopoints;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean trackNodeSourcePosition;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean retainLocalVariables;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins;
    descriptor: Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean replaceLocalsWithConstants;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private void <init>(boolean, boolean, org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode, boolean, boolean, boolean, boolean, boolean, java.util.List<jdk.vm.ci.meta.ResolvedJavaType>, org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins);
    descriptor: (ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=11, args_size=11
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean eagerResolving
        start local 2 // boolean unresolvedIsError
        start local 3 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode bytecodeExceptionMode
        start local 4 // boolean omitAssertions
        start local 5 // boolean insertFullInfopoints
        start local 6 // boolean trackNodeSourcePosition
        start local 7 // boolean retainLocalVariables
        start local 8 // boolean replaceLocalsWithConstants
        start local 9 // java.util.List skippedExceptionTypes
        start local 10 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
         0: .line 228
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 238
            aload 0 /* this */
            iload 1 /* eagerResolving */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 239
            aload 0 /* this */
            iload 2 /* unresolvedIsError */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 240
            aload 0 /* this */
            aload 3 /* bytecodeExceptionMode */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 241
            aload 0 /* this */
            iload 4 /* omitAssertions */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 242
            aload 0 /* this */
            iload 5 /* insertFullInfopoints */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 243
            aload 0 /* this */
            iload 6 /* trackNodeSourcePosition */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 244
            aload 0 /* this */
            iload 7 /* retainLocalVariables */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 245
            aload 0 /* this */
            iload 8 /* replaceLocalsWithConstants */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 246
            aload 0 /* this */
            aload 9 /* skippedExceptionTypes */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 247
            aload 0 /* this */
            aload 10 /* plugins */
            putfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 248
            return
        end local 10 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
        end local 9 // java.util.List skippedExceptionTypes
        end local 8 // boolean replaceLocalsWithConstants
        end local 7 // boolean retainLocalVariables
        end local 6 // boolean trackNodeSourcePosition
        end local 5 // boolean insertFullInfopoints
        end local 4 // boolean omitAssertions
        end local 3 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode bytecodeExceptionMode
        end local 2 // boolean unresolvedIsError
        end local 1 // boolean eagerResolving
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   12     0                        this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1              eagerResolving  Z
            0   12     2           unresolvedIsError  Z
            0   12     3       bytecodeExceptionMode  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
            0   12     4              omitAssertions  Z
            0   12     5        insertFullInfopoints  Z
            0   12     6     trackNodeSourcePosition  Z
            0   12     7        retainLocalVariables  Z
            0   12     8  replaceLocalsWithConstants  Z
            0   12     9       skippedExceptionTypes  Ljava/util/List<Ljdk/vm/ci/meta/ResolvedJavaType;>;
            0   12    10                     plugins  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
    Signature: (ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List<Ljdk/vm/ci/meta/ResolvedJavaType;>;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
    MethodParameters:
                            Name  Flags
      eagerResolving              
      unresolvedIsError           
      bytecodeExceptionMode       
      omitAssertions              
      insertFullInfopoints        
      trackNodeSourcePosition     
      retainLocalVariables        
      replaceLocalsWithConstants  
      skippedExceptionTypes       
      plugins                     

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration copy();
    descriptor: ()Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=3, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 256
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins
            dup
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins.<init>:(Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            astore 1 /* newPlugins */
        start local 1 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins newPlugins
         1: .line 257
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         2: .line 258
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         3: .line 259
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         4: .line 260
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         5: .line 261
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         6: .line 262
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         7: .line 263
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         8: .line 264
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         9: .line 265
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
        10: .line 266
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        11: .line 267
            aload 1 /* newPlugins */
        12: .line 257
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            astore 2 /* result */
        start local 2 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration result
        13: .line 268
            aload 2 /* result */
            areturn
        end local 2 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration result
        end local 1 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins newPlugins
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            1   14     1  newPlugins  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
           13   14     2      result  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withUnresolvedIsError(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newUnresolvedIsError
         0: .line 278
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 279
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 280
            iload 1 /* newUnresolvedIsError */
         3: .line 281
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 282
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 283
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 284
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 285
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 286
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 287
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 288
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 278
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newUnresolvedIsError
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   12     0                  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newUnresolvedIsError  Z
    MethodParameters:
                      Name  Flags
      newUnresolvedIsError  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withEagerResolving(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newEagerResolving
         0: .line 292
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 293
            iload 1 /* newEagerResolving */
         2: .line 294
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 295
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 296
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 297
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 298
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 299
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 300
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 301
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 302
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 292
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newEagerResolving
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   12     0               this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newEagerResolving  Z
    MethodParameters:
                   Name  Flags
      newEagerResolving  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withSkippedExceptionTypes(jdk.vm.ci.meta.ResolvedJavaType[]);
    descriptor: ([Ljdk/vm/ci/meta/ResolvedJavaType;)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // jdk.vm.ci.meta.ResolvedJavaType[] newSkippedExceptionTypes
         0: .line 306
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 307
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 308
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 309
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 310
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 311
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 312
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 313
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 314
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 315
            aload 1 /* newSkippedExceptionTypes */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
        10: .line 316
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 306
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // jdk.vm.ci.meta.ResolvedJavaType[] newSkippedExceptionTypes
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   12     0                      this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newSkippedExceptionTypes  [Ljdk/vm/ci/meta/ResolvedJavaType;
    MethodParameters:
                          Name  Flags
      newSkippedExceptionTypes  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withBytecodeExceptionMode(org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode);
    descriptor: (Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode newBytecodeExceptionMode
         0: .line 320
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         1: .line 321
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         2: .line 322
            aload 1 /* newBytecodeExceptionMode */
         3: .line 323
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         4: .line 324
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         5: .line 325
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         6: .line 326
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         7: .line 327
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         8: .line 328
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
         9: .line 329
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        10: .line 320
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode newBytecodeExceptionMode
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   11     0                      this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   11     1  newBytecodeExceptionMode  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
    MethodParameters:
                          Name  Flags
      newBytecodeExceptionMode  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withOmitAssertions(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newOmitAssertions
         0: .line 333
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 334
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 335
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 336
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 337
            iload 1 /* newOmitAssertions */
         5: .line 338
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 339
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 340
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 341
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 342
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 343
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 333
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newOmitAssertions
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   12     0               this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newOmitAssertions  Z
    MethodParameters:
                   Name  Flags
      newOmitAssertions  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withFullInfopoints(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newInsertFullInfopoints
         0: .line 347
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 348
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 349
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 350
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 351
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 352
            iload 1 /* newInsertFullInfopoints */
         6: .line 353
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 354
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 355
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 356
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 357
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 347
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newInsertFullInfopoints
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   12     0                     this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newInsertFullInfopoints  Z
    MethodParameters:
                         Name  Flags
      newInsertFullInfopoints  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withNodeSourcePosition(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newTrackNodeSourcePosition
         0: .line 361
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 362
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 363
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 364
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 365
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 366
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 367
            iload 1 /* newTrackNodeSourcePosition */
         7: .line 368
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 369
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 370
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 371
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 361
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newTrackNodeSourcePosition
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                        Name  Signature
            0   12     0                        this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newTrackNodeSourcePosition  Z
    MethodParameters:
                            Name  Flags
      newTrackNodeSourcePosition  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withRetainLocalVariables(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newRetainLocalVariables
         0: .line 375
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 376
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 377
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 378
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 379
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 380
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 381
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 382
            iload 1 /* newRetainLocalVariables */
         8: .line 383
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
         9: .line 384
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 385
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 375
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newRetainLocalVariables
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   12     0                     this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newRetainLocalVariables  Z
    MethodParameters:
                         Name  Flags
      newRetainLocalVariables  

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration withReplaceLocalsWithConstants(boolean);
    descriptor: (Z)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=12, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
        start local 1 // boolean newReplaceLocalsWithConstants
         0: .line 389
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 390
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
         2: .line 391
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
         3: .line 392
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 393
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
         5: .line 394
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
         6: .line 395
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
         7: .line 396
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
         8: .line 397
            iload 1 /* newReplaceLocalsWithConstants */
         9: .line 398
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
        10: .line 399
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
        11: .line 389
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 1 // boolean newReplaceLocalsWithConstants
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot                           Name  Signature
            0   12     0                           this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
            0   12     1  newReplaceLocalsWithConstants  Z
    MethodParameters:
                               Name  Flags
      newReplaceLocalsWithConstants  

  public java.util.List<jdk.vm.ci.meta.ResolvedJavaType> getSkippedExceptionTypes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 403
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.skippedExceptionTypes:Ljava/util/List;
            areturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    Signature: ()Ljava/util/List<Ljdk/vm/ci/meta/ResolvedJavaType;>;

  public boolean eagerResolving();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 407
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.eagerResolving:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode getBytecodeExceptionMode();
    descriptor: ()Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 411
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.bytecodeExceptionMode:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
            areturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public boolean omitAssertions();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 415
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.omitAssertions:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public boolean trackNodeSourcePosition();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 419
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.trackNodeSourcePosition:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public boolean retainLocalVariables();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 423
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.retainLocalVariables:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public boolean insertFullInfopoints();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 427
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.insertFullInfopoints:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public boolean replaceLocalsWithConstants();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 431
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.replaceLocalsWithConstants:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public static org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration getDefault(org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins);
    descriptor: (Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=12, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
         0: .line 435
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 436
            iconst_0
         2: .line 437
            iconst_0
         3: .line 438
            getstatic org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode.Profile:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 439
            iconst_0
         5: .line 440
            iconst_0
         6: .line 441
            iconst_0
         7: .line 442
            iconst_0
         8: .line 443
            iconst_0
         9: .line 444
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
        10: .line 445
            aload 0 /* plugins */
        11: .line 435
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0  plugins  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
    MethodParameters:
         Name  Flags
      plugins  

  public static org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration getSnippetDefault(org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins);
    descriptor: (Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=12, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
         0: .line 449
            new org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
            dup
         1: .line 450
            iconst_1
         2: .line 451
            iconst_1
         3: .line 452
            getstatic org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode.OmitAll:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;
         4: .line 453
            iconst_0
         5: .line 454
            iconst_0
         6: .line 455
            iconst_0
         7: .line 456
            iconst_0
         8: .line 457
            iconst_0
         9: .line 458
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
        10: .line 459
            aload 0 /* plugins */
        11: .line 449
            invokespecial org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.<init>:(ZZLorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$BytecodeExceptionMode;ZZZZZLjava/util/List;Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;)V
            areturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins plugins
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0  plugins  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
    MethodParameters:
         Name  Flags
      plugins  

  public boolean unresolvedIsError();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 464
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.unresolvedIsError:Z
            ireturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;

  public org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins getPlugins();
    descriptor: ()Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
         0: .line 468
            aload 0 /* this */
            getfield org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration.plugins:Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration$Plugins;
            areturn
        end local 0 // org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/nodes/graphbuilderconf/GraphBuilderConfiguration;
}
SourceFile: "GraphBuilderConfiguration.java"
NestMembers:
  org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode  org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins
InnerClasses:
  public final BytecodeExceptionMode = org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$BytecodeExceptionMode of org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration
  public Plugins = org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration$Plugins of org.graalvm.compiler.nodes.graphbuilderconf.GraphBuilderConfiguration