public interface org.graalvm.compiler.debug.DebugConfig
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.graalvm.compiler.debug.DebugConfig
  super_class: java.lang.Object
{
  public abstract org.graalvm.compiler.options.OptionValues getOptions();
    descriptor: ()Lorg/graalvm/compiler/options/OptionValues;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract int getLogLevel(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract int getDumpLevel(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isLogEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isCountEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isMemUseTrackingEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isDumpEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isVerifyEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isVerifyEnabledForMethod(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract boolean isTimeEnabled(org.graalvm.compiler.debug.DebugContext$Scope);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext$Scope;)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      scope  

  public abstract java.lang.RuntimeException interceptException(org.graalvm.compiler.debug.DebugContext, java.lang.Throwable);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext;Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      debug  
      e      

  public abstract java.util.Collection<org.graalvm.compiler.debug.DebugDumpHandler> dumpHandlers();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Collection<Lorg/graalvm/compiler/debug/DebugDumpHandler;>;

  public abstract java.io.PrintStream output();
    descriptor: ()Ljava/io/PrintStream;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract java.util.Collection<org.graalvm.compiler.debug.DebugVerifyHandler> verifyHandlers();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/Collection<Lorg/graalvm/compiler/debug/DebugVerifyHandler;>;

  public void closeDumpHandlers(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=5, args_size=2
        start local 0 // org.graalvm.compiler.debug.DebugConfig this
        start local 1 // boolean ignoreErrors
         0: .line 117
            aload 0 /* this */
            invokeinterface org.graalvm.compiler.debug.DebugConfig.dumpHandlers:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals: org.graalvm.compiler.debug.DebugConfig int top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.graalvm.compiler.debug.DebugDumpHandler
            astore 2 /* handler */
        start local 2 // org.graalvm.compiler.debug.DebugDumpHandler handler
         2: .line 119
            aload 2 /* handler */
            invokeinterface org.graalvm.compiler.debug.DebugDumpHandler.close:()V
         3: .line 120
            goto 7
      StackMap locals: org.graalvm.compiler.debug.DebugConfig int org.graalvm.compiler.debug.DebugDumpHandler java.util.Iterator
      StackMap stack: java.lang.Throwable
         4: astore 4 /* e */
        start local 4 // java.lang.Throwable e
         5: .line 121
            iload 1 /* ignoreErrors */
            ifne 7
         6: .line 122
            aload 4 /* e */
            athrow
        end local 4 // java.lang.Throwable e
        end local 2 // org.graalvm.compiler.debug.DebugDumpHandler handler
         7: .line 117
      StackMap locals: org.graalvm.compiler.debug.DebugConfig int top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         8: .line 126
            return
        end local 1 // boolean ignoreErrors
        end local 0 // org.graalvm.compiler.debug.DebugConfig this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lorg/graalvm/compiler/debug/DebugConfig;
            0    9     1  ignoreErrors  Z
            2    7     2       handler  Lorg/graalvm/compiler/debug/DebugDumpHandler;
            5    7     4             e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
    MethodParameters:
              Name  Flags
      ignoreErrors  

  public static jdk.vm.ci.meta.JavaMethod asJavaMethod(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljdk/vm/ci/meta/JavaMethod;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object context
         0: .line 134
            aload 0 /* context */
            instanceof org.graalvm.compiler.debug.JavaMethodContext
            ifeq 2
         1: .line 135
            aload 0 /* context */
            checkcast org.graalvm.compiler.debug.JavaMethodContext
            invokeinterface org.graalvm.compiler.debug.JavaMethodContext.asJavaMethod:()Ljdk/vm/ci/meta/JavaMethod;
            areturn
         2: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* context */
            instanceof jdk.vm.ci.meta.JavaMethod
            ifeq 4
         3: .line 138
            aload 0 /* context */
            checkcast jdk.vm.ci.meta.JavaMethod
            areturn
         4: .line 140
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // java.lang.Object context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  context  Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      context  
}
SourceFile: "DebugConfig.java"
InnerClasses:
  public abstract Scope = org.graalvm.compiler.debug.DebugContext$Scope of org.graalvm.compiler.debug.DebugContext