class org.apache.lucene.store.RAMInputStream$1 extends org.apache.lucene.store.RAMInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.lucene.store.RAMInputStream$1
  super_class: org.apache.lucene.store.RAMInputStream
{
  final org.apache.lucene.store.RAMInputStream this$0;
    descriptor: Lorg/apache/lucene/store/RAMInputStream;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final long val$offset;
    descriptor: J
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final long val$sliceLength;
    descriptor: J
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.apache.lucene.store.RAMInputStream, java.lang.String, org.apache.lucene.store.RAMFile, long, long, long);
    descriptor: (Lorg/apache/lucene/store/RAMInputStream;Ljava/lang/String;Lorg/apache/lucene/store/RAMFile;JJJ)V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, args_size=7
        start local 0 // org.apache.lucene.store.RAMInputStream$1 this
        start local 2 // java.lang.String $anonymous0
        start local 3 // org.apache.lucene.store.RAMFile $anonymous1
        start local 4 // long $anonymous2
         0: .line 153
            aload 0 /* this */
            aload 1
            putfield org.apache.lucene.store.RAMInputStream$1.this$0:Lorg/apache/lucene/store/RAMInputStream;
            aload 0 /* this */
            lload 6
            putfield org.apache.lucene.store.RAMInputStream$1.val$offset:J
            aload 0 /* this */
            lload 8
            putfield org.apache.lucene.store.RAMInputStream$1.val$sliceLength:J
            aload 0 /* this */
            aload 2 /* $anonymous0 */
            aload 3 /* $anonymous1 */
            lload 4 /* $anonymous2 */
            invokespecial org.apache.lucene.store.RAMInputStream.<init>:(Ljava/lang/String;Lorg/apache/lucene/store/RAMFile;J)V
         1: .line 155
            aload 0 /* this */
            lconst_0
            invokevirtual org.apache.lucene.store.RAMInputStream$1.seek:(J)V
         2: .line 153
            return
        end local 4 // long $anonymous2
        end local 3 // org.apache.lucene.store.RAMFile $anonymous1
        end local 2 // java.lang.String $anonymous0
        end local 0 // org.apache.lucene.store.RAMInputStream$1 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/apache/lucene/store/RAMInputStream$1;
            0    3     2  $anonymous0  Ljava/lang/String;
            0    3     3  $anonymous1  Lorg/apache/lucene/store/RAMFile;
            0    3     4  $anonymous2  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                 Name  Flags
      this$0           final
      $anonymous0      
      $anonymous1      
      $anonymous2      
      val$offset       final
      val$sliceLength  final

  public void seek(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.lucene.store.RAMInputStream$1 this
        start local 1 // long pos
         0: .line 160
            lload 1 /* pos */
            lconst_0
            lcmp
            ifge 2
         1: .line 161
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Seeking to negative position: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* pos */
            aload 0 /* this */
            getfield org.apache.lucene.store.RAMInputStream$1.val$offset:J
            ladd
            invokespecial org.apache.lucene.store.RAMInputStream.seek:(J)V
         3: .line 164
            return
        end local 1 // long pos
        end local 0 // org.apache.lucene.store.RAMInputStream$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/store/RAMInputStream$1;
            0    4     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public long getFilePointer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.RAMInputStream$1 this
         0: .line 168
            aload 0 /* this */
            invokespecial org.apache.lucene.store.RAMInputStream.getFilePointer:()J
            aload 0 /* this */
            getfield org.apache.lucene.store.RAMInputStream$1.val$offset:J
            lsub
            lreturn
        end local 0 // org.apache.lucene.store.RAMInputStream$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/RAMInputStream$1;

  public long length();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.store.RAMInputStream$1 this
         0: .line 173
            aload 0 /* this */
            getfield org.apache.lucene.store.RAMInputStream$1.val$sliceLength:J
            lreturn
        end local 0 // org.apache.lucene.store.RAMInputStream$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/store/RAMInputStream$1;

  public org.apache.lucene.store.IndexInput slice(java.lang.String, long, long);
    descriptor: (Ljava/lang/String;JJ)Lorg/apache/lucene/store/IndexInput;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.apache.lucene.store.RAMInputStream$1 this
        start local 1 // java.lang.String sliceDescription
        start local 2 // long ofs
        start local 4 // long len
         0: .line 178
            aload 0 /* this */
            aload 1 /* sliceDescription */
            aload 0 /* this */
            getfield org.apache.lucene.store.RAMInputStream$1.val$offset:J
            lload 2 /* ofs */
            ladd
            lload 4 /* len */
            invokespecial org.apache.lucene.store.RAMInputStream.slice:(Ljava/lang/String;JJ)Lorg/apache/lucene/store/IndexInput;
            areturn
        end local 4 // long len
        end local 2 // long ofs
        end local 1 // java.lang.String sliceDescription
        end local 0 // org.apache.lucene.store.RAMInputStream$1 this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/apache/lucene/store/RAMInputStream$1;
            0    1     1  sliceDescription  Ljava/lang/String;
            0    1     2               ofs  J
            0    1     4               len  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                  Name  Flags
      sliceDescription  
      ofs               
      len               
}
SourceFile: "RAMInputStream.java"
EnclosingMethod: org.apache.lucene.store.RAMInputStream.slice:(Ljava/lang/String;JJ)Lorg/apache/lucene/store/IndexInput;
NestHost: org.apache.lucene.store.RAMInputStream
InnerClasses:
  org.apache.lucene.store.RAMInputStream$1