public abstract class org.graalvm.compiler.graph.test.GraphTest
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.graalvm.compiler.graph.test.GraphTest
  super_class: java.lang.Object
{
  private final java.lang.ThreadLocal<org.graalvm.compiler.debug.DebugContext> cachedDebug;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Lorg/graalvm/compiler/debug/DebugContext;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.test.GraphTest this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 39
            aload 0 /* this */
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            putfield org.graalvm.compiler.graph.test.GraphTest.cachedDebug:Ljava/lang/ThreadLocal;
         2: .line 33
            return
        end local 0 // org.graalvm.compiler.graph.test.GraphTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/graph/test/GraphTest;

  static org.graalvm.compiler.options.OptionValues getOptions();
    descriptor: ()Lorg/graalvm/compiler/options/OptionValues;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 36
            ldc Lorg/graalvm/compiler/options/OptionValues;
            invokestatic org.graalvm.compiler.api.test.Graal.getRequiredCapability:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast org.graalvm.compiler.options.OptionValues
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected org.graalvm.compiler.debug.DebugContext getDebug(org.graalvm.compiler.options.OptionValues);
    descriptor: (Lorg/graalvm/compiler/options/OptionValues;)Lorg/graalvm/compiler/debug/DebugContext;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.graalvm.compiler.graph.test.GraphTest this
        start local 1 // org.graalvm.compiler.options.OptionValues options
         0: .line 42
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.test.GraphTest.cachedDebug:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.graalvm.compiler.debug.DebugContext
            astore 2 /* cached */
        start local 2 // org.graalvm.compiler.debug.DebugContext cached
         1: .line 43
            aload 2 /* cached */
            ifnull 5
         2: .line 44
            aload 2 /* cached */
            invokevirtual org.graalvm.compiler.debug.DebugContext.getOptions:()Lorg/graalvm/compiler/options/OptionValues;
            aload 1 /* options */
            if_acmpne 4
         3: .line 45
            aload 2 /* cached */
            areturn
         4: .line 47
      StackMap locals: org.graalvm.compiler.debug.DebugContext
      StackMap stack:
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "At most one "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc Lorg/graalvm/compiler/debug/DebugContext;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " object should be created per test"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 49
      StackMap locals:
      StackMap stack:
            aload 1 /* options */
            getstatic org.graalvm.compiler.debug.DebugHandlersFactory.LOADER:Ljava/lang/Iterable;
            invokestatic org.graalvm.compiler.debug.DebugContext.create:(Lorg/graalvm/compiler/options/OptionValues;Ljava/lang/Iterable;)Lorg/graalvm/compiler/debug/DebugContext;
            astore 3 /* debug */
        start local 3 // org.graalvm.compiler.debug.DebugContext debug
         6: .line 50
            aload 0 /* this */
            getfield org.graalvm.compiler.graph.test.GraphTest.cachedDebug:Ljava/lang/ThreadLocal;
            aload 3 /* debug */
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         7: .line 51
            aload 3 /* debug */
            areturn
        end local 3 // org.graalvm.compiler.debug.DebugContext debug
        end local 2 // org.graalvm.compiler.debug.DebugContext cached
        end local 1 // org.graalvm.compiler.options.OptionValues options
        end local 0 // org.graalvm.compiler.graph.test.GraphTest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/graalvm/compiler/graph/test/GraphTest;
            0    8     1  options  Lorg/graalvm/compiler/options/OptionValues;
            1    8     2   cached  Lorg/graalvm/compiler/debug/DebugContext;
            6    8     3    debug  Lorg/graalvm/compiler/debug/DebugContext;
    MethodParameters:
         Name  Flags
      options  

  protected org.graalvm.compiler.debug.DebugContext getDebug();
    descriptor: ()Lorg/graalvm/compiler/debug/DebugContext;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.test.GraphTest this
         0: .line 55
            aload 0 /* this */
            invokestatic org.graalvm.compiler.graph.test.GraphTest.getOptions:()Lorg/graalvm/compiler/options/OptionValues;
            invokevirtual org.graalvm.compiler.graph.test.GraphTest.getDebug:(Lorg/graalvm/compiler/options/OptionValues;)Lorg/graalvm/compiler/debug/DebugContext;
            areturn
        end local 0 // org.graalvm.compiler.graph.test.GraphTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/graph/test/GraphTest;

  public void afterTest();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.graph.test.GraphTest this
         0: .line 58
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tAfter cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.graph.test.GraphTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/graph/test/GraphTest;
    RuntimeInvisibleAnnotations: 
      After()
}
SourceFile: "GraphTest.java"