public final class com.oracle.truffle.llvm.parser.binary.BinaryParserResult
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.parser.binary.BinaryParserResult
  super_class: java.lang.Object
{
  private final java.util.ArrayList<java.lang.String> libraries;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Ljava/lang/String;>;

  private final java.util.ArrayList<java.lang.String> paths;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Ljava/lang/String;>;

  private final org.graalvm.polyglot.io.ByteSequence bitcode;
    descriptor: Lorg/graalvm/polyglot/io/ByteSequence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.llvm.runtime.LibraryLocator locator;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.api.source.Source source;
    descriptor: Lcom/oracle/truffle/api/source/Source;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.util.ArrayList<java.lang.String>, java.util.ArrayList<java.lang.String>, org.graalvm.polyglot.io.ByteSequence, com.oracle.truffle.llvm.runtime.LibraryLocator, com.oracle.truffle.api.source.Source);
    descriptor: (Ljava/util/ArrayList;Ljava/util/ArrayList;Lorg/graalvm/polyglot/io/ByteSequence;Lcom/oracle/truffle/llvm/runtime/LibraryLocator;Lcom/oracle/truffle/api/source/Source;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
        start local 1 // java.util.ArrayList libraries
        start local 2 // java.util.ArrayList paths
        start local 3 // org.graalvm.polyglot.io.ByteSequence bitcode
        start local 4 // com.oracle.truffle.llvm.runtime.LibraryLocator locator
        start local 5 // com.oracle.truffle.api.source.Source source
         0: .line 52
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 53
            aload 0 /* this */
            aload 1 /* libraries */
            putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.libraries:Ljava/util/ArrayList;
         2: .line 54
            aload 0 /* this */
            aload 2 /* paths */
            putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.paths:Ljava/util/ArrayList;
         3: .line 55
            aload 0 /* this */
            aload 3 /* bitcode */
            putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.bitcode:Lorg/graalvm/polyglot/io/ByteSequence;
         4: .line 56
            aload 0 /* this */
            aload 4 /* locator */
            putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.locator:Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
         5: .line 57
            aload 0 /* this */
            aload 5 /* source */
            putfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.source:Lcom/oracle/truffle/api/source/Source;
         6: .line 58
            return
        end local 5 // com.oracle.truffle.api.source.Source source
        end local 4 // com.oracle.truffle.llvm.runtime.LibraryLocator locator
        end local 3 // org.graalvm.polyglot.io.ByteSequence bitcode
        end local 2 // java.util.ArrayList paths
        end local 1 // java.util.ArrayList libraries
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
            0    7     1  libraries  Ljava/util/ArrayList<Ljava/lang/String;>;
            0    7     2      paths  Ljava/util/ArrayList<Ljava/lang/String;>;
            0    7     3    bitcode  Lorg/graalvm/polyglot/io/ByteSequence;
            0    7     4    locator  Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
            0    7     5     source  Lcom/oracle/truffle/api/source/Source;
    Signature: (Ljava/util/ArrayList<Ljava/lang/String;>;Ljava/util/ArrayList<Ljava/lang/String;>;Lorg/graalvm/polyglot/io/ByteSequence;Lcom/oracle/truffle/llvm/runtime/LibraryLocator;Lcom/oracle/truffle/api/source/Source;)V
    MethodParameters:
           Name  Flags
      libraries  
      paths      
      bitcode    
      locator    
      source     

  public java.util.List<java.lang.String> getLibraries();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
         0: .line 61
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.libraries:Ljava/util/ArrayList;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public java.util.List<java.lang.String> getLibraryPaths();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
         0: .line 65
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.paths:Ljava/util/ArrayList;
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public org.graalvm.polyglot.io.ByteSequence getBitcode();
    descriptor: ()Lorg/graalvm/polyglot/io/ByteSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
         0: .line 69
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.bitcode:Lorg/graalvm/polyglot/io/ByteSequence;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;

  public com.oracle.truffle.llvm.runtime.LibraryLocator getLocator();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
         0: .line 73
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.locator:Lcom/oracle/truffle/llvm/runtime/LibraryLocator;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;

  public com.oracle.truffle.api.source.Source getSource();
    descriptor: ()Lcom/oracle/truffle/api/source/Source;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
         0: .line 77
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.binary.BinaryParserResult.source:Lcom/oracle/truffle/api/source/Source;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.binary.BinaryParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/binary/BinaryParserResult;
}
SourceFile: "BinaryParserResult.java"