public class org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl implements org.graalvm.compiler.truffle.common.TruffleDebugContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl
  super_class: java.lang.Object
{
  public final org.graalvm.compiler.debug.DebugContext debugContext;
    descriptor: Lorg/graalvm/compiler/debug/DebugContext;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL

  public void <init>(org.graalvm.compiler.debug.DebugContext);
    descriptor: (Lorg/graalvm/compiler/debug/DebugContext;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
        start local 1 // org.graalvm.compiler.debug.DebugContext debugContext
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* debugContext */
            putfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
         2: .line 42
            return
        end local 1 // org.graalvm.compiler.debug.DebugContext debugContext
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
            0    3     1  debugContext  Lorg/graalvm/compiler/debug/DebugContext;
    MethodParameters:
              Name  Flags
      debugContext  final

  public <G, N, M> org.graalvm.graphio.GraphOutput<G, M> buildOutput(org.graalvm.graphio.GraphOutput$Builder<G, N, M>);
    descriptor: (Lorg/graalvm/graphio/GraphOutput$Builder;)Lorg/graalvm/graphio/GraphOutput;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
        start local 1 // org.graalvm.graphio.GraphOutput$Builder builder
         0: .line 46
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            aload 1 /* builder */
            invokevirtual org.graalvm.compiler.debug.DebugContext.buildOutput:(Lorg/graalvm/graphio/GraphOutput$Builder;)Lorg/graalvm/graphio/GraphOutput;
            areturn
        end local 1 // org.graalvm.graphio.GraphOutput$Builder builder
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
            0    1     1  builder  Lorg/graalvm/graphio/GraphOutput$Builder<TG;TN;TM;>;
    Exceptions:
      throws java.io.IOException
    Signature: <G:Ljava/lang/Object;N:Ljava/lang/Object;M:Ljava/lang/Object;>(Lorg/graalvm/graphio/GraphOutput$Builder<TG;TN;TM;>;)Lorg/graalvm/graphio/GraphOutput<TG;TM;>;
    MethodParameters:
         Name  Flags
      builder  

  public boolean isDumpEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
         0: .line 51
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            iconst_1
            invokevirtual org.graalvm.compiler.debug.DebugContext.isDumpEnabled:(I)Z
            ireturn
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;

  public java.util.Map<java.lang.Object, java.lang.Object> getVersionProperties();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
         0: .line 56
            aconst_null
            invokestatic org.graalvm.compiler.debug.DebugContext.addVersionProperties:(Ljava/util/Map;)Ljava/util/Map;
            areturn
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
    Signature: ()Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;

  public java.lang.AutoCloseable scope(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/AutoCloseable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
        start local 1 // java.lang.String name
         0: .line 61
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            aload 1 /* name */
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.lang.AutoCloseable scope(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/AutoCloseable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object context
         0: .line 67
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            aload 1 /* name */
            aload 2 /* context */
            invokevirtual org.graalvm.compiler.debug.DebugContext.scope:(Ljava/lang/Object;Ljava/lang/Object;)Lorg/graalvm/compiler/debug/DebugContext$Scope;
         1: areturn
         2: .line 68
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* e */
        start local 3 // java.lang.Throwable e
         3: .line 69
            aload 3 /* e */
            athrow
        end local 3 // java.lang.Throwable e
         4: .line 70
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* t */
        start local 3 // java.lang.Throwable t
         5: .line 71
            new java.lang.RuntimeException
            dup
            aload 3 /* t */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.lang.Throwable t
        end local 2 // java.lang.Object context
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
            0    6     1     name  Ljava/lang/String;
            0    6     2  context  Ljava/lang/Object;
            3    4     3        e  Ljava/lang/Throwable;
            5    6     3        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.RuntimeException
           0     1       2  Class java.lang.Error
           0     1       4  Class java.lang.Throwable
    MethodParameters:
         Name  Flags
      name     
      context  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
         0: .line 77
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            invokevirtual org.graalvm.compiler.debug.DebugContext.close:()V
         1: .line 78
            return
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;

  public void closeDebugChannels();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
         0: .line 82
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl.debugContext:Lorg/graalvm/compiler/debug/DebugContext;
            iconst_0
            invokevirtual org.graalvm.compiler.debug.DebugContext.closeDumpHandlers:(Z)V
         1: .line 83
            return
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleDebugContextImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleDebugContextImpl;
}
SourceFile: "TruffleDebugContextImpl.java"
InnerClasses:
  public abstract Scope = org.graalvm.compiler.debug.DebugContext$Scope of org.graalvm.compiler.debug.DebugContext
  public final Builder = org.graalvm.graphio.GraphOutput$Builder of org.graalvm.graphio.GraphOutput