public final class com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext
  super_class: java.lang.Object
{
  private final java.util.HashMap<com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol, com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder> staticValues;
    descriptor: Ljava/util/HashMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/HashMap<Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceSymbol;Lcom/oracle/truffle/llvm/runtime/debug/value/LLVMDebugObjectBuilder;>;

  private final java.util.HashMap<java.lang.String, com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation> exportedScopes;
    descriptor: Ljava/util/HashMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/HashMap<Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceLocation;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.staticValues:Ljava/util/HashMap;
         2: .line 47
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.exportedScopes:Ljava/util/HashMap;
         3: .line 48
            return
        end local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/llvm/runtime/debug/LLVMSourceContext;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()

  public void registerStatic(com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol, com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceSymbol;Lcom/oracle/truffle/llvm/runtime/debug/value/LLVMDebugObjectBuilder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
        start local 1 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol symbol
        start local 2 // com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder value
         0: .line 52
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.staticValues:Ljava/util/HashMap;
            aload 1 /* symbol */
            aload 2 /* value */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 53
            return
        end local 2 // com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder value
        end local 1 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol symbol
        end local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/llvm/runtime/debug/LLVMSourceContext;
            0    2     1  symbol  Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceSymbol;
            0    2     2   value  Lcom/oracle/truffle/llvm/runtime/debug/value/LLVMDebugObjectBuilder;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
        Name  Flags
      symbol  
      value   

  public com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder getStatic(com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceSymbol;)Lcom/oracle/truffle/llvm/runtime/debug/value/LLVMDebugObjectBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
        start local 1 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol symbol
         0: .line 57
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.staticValues:Ljava/util/HashMap;
            aload 1 /* symbol */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.debug.value.LLVMDebugObjectBuilder
            areturn
        end local 1 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceSymbol symbol
        end local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/llvm/runtime/debug/LLVMSourceContext;
            0    1     1  symbol  Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceSymbol;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
        Name  Flags
      symbol  

  public com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation getExportedScope(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceLocation;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
        start local 1 // java.lang.String name
         0: .line 62
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.exportedScopes:Ljava/util/HashMap;
            aload 1 /* name */
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation
            areturn
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/debug/LLVMSourceContext;
            0    1     1  name  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      name  

  public void exportScope(java.lang.String, com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceLocation;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
        start local 1 // java.lang.String name
        start local 2 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation scope
         0: .line 67
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext.exportedScopes:Ljava/util/HashMap;
            aload 1 /* name */
            aload 2 /* scope */
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 68
            return
        end local 2 // com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation scope
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.debug.LLVMSourceContext this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/llvm/runtime/debug/LLVMSourceContext;
            0    2     1   name  Ljava/lang/String;
            0    2     2  scope  Lcom/oracle/truffle/llvm/runtime/debug/scope/LLVMSourceLocation;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      name   
      scope  
}
SourceFile: "LLVMSourceContext.java"
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives