final class com.oracle.truffle.llvm.parser.text.LLSourceSection extends com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation$LazySourceSection
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.parser.text.LLSourceSection
  super_class: com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation$LazySourceSection
{
  private final com.oracle.truffle.api.source.SourceSection section;
    descriptor: Lcom/oracle/truffle/api/source/SourceSection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(com.oracle.truffle.api.source.SourceSection);
    descriptor: (Lcom/oracle/truffle/api/source/SourceSection;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
        start local 1 // com.oracle.truffle.api.source.SourceSection section
         0: .line 42
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation$LazySourceSection.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* section */
            putfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
         2: .line 44
            return
        end local 1 // com.oracle.truffle.api.source.SourceSection section
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;
            0    3     1  section  Lcom/oracle/truffle/api/source/SourceSection;
    MethodParameters:
         Name  Flags
      section  

  public com.oracle.truffle.api.source.SourceSection get();
    descriptor: ()Lcom/oracle/truffle/api/source/SourceSection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
         0: .line 48
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;

  public java.lang.String getPath();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
         0: .line 54
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getSource:()Lcom/oracle/truffle/api/source/Source;
            invokevirtual com.oracle.truffle.api.source.Source.getPath:()Ljava/lang/String;
            iconst_0
            anewarray java.lang.String
            invokestatic java.nio.file.Paths.get:(Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()

  public int getLine();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
         0: .line 59
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getStartLine:()I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;

  public int getColumn();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
         0: .line 64
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getStartColumn:()I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
         0: .line 70
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.text.LLSourceSection.section:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getSource:()Lcom/oracle/truffle/api/source/Source;
            invokevirtual com.oracle.truffle.api.source.Source.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ":"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.parser.text.LLSourceSection.getLine:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.text.LLSourceSection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/text/LLSourceSection;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
}
SourceFile: "LLSourceSection.java"
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  public abstract LazySourceSection = com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation$LazySourceSection of com.oracle.truffle.llvm.runtime.debug.scope.LLVMSourceLocation