class com.google.common.collect.ImmutableList$SubList extends com.google.common.collect.ImmutableList<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.ImmutableList$SubList
  super_class: com.google.common.collect.ImmutableList
{
  final transient int offset;
    descriptor: I
    flags: (0x0090) ACC_FINAL, ACC_TRANSIENT

  final transient int length;
    descriptor: I
    flags: (0x0090) ACC_FINAL, ACC_TRANSIENT

  final com.google.common.collect.ImmutableList this$0;
    descriptor: Lcom/google/common/collect/ImmutableList;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(com.google.common.collect.ImmutableList, int, int);
    descriptor: (Lcom/google/common/collect/ImmutableList;II)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.google.common.collect.ImmutableList$SubList this
        start local 2 // int offset
        start local 3 // int length
         0: .line 458
            aload 0 /* this */
            aload 1
            putfield com.google.common.collect.ImmutableList$SubList.this$0:Lcom/google/common/collect/ImmutableList;
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableList.<init>:()V
         1: .line 459
            aload 0 /* this */
            iload 2 /* offset */
            putfield com.google.common.collect.ImmutableList$SubList.offset:I
         2: .line 460
            aload 0 /* this */
            iload 3 /* length */
            putfield com.google.common.collect.ImmutableList$SubList.length:I
         3: .line 461
            return
        end local 3 // int length
        end local 2 // int offset
        end local 0 // com.google.common.collect.ImmutableList$SubList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/ImmutableList$SubList;
            0    4     2  offset  I
            0    4     3  length  I
    MethodParameters:
        Name  Flags
      this$0  final
      offset  
      length  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableList$SubList this
         0: .line 465
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.length:I
            ireturn
        end local 0 // com.google.common.collect.ImmutableList$SubList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableList$SubList;

  public E get();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.ImmutableList$SubList this
        start local 1 // int index
         0: .line 470
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.length:I
            invokestatic com.google.common.base.Preconditions.checkElementIndex:(II)I
            pop
         1: .line 471
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.this$0:Lcom/google/common/collect/ImmutableList;
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.offset:I
            iadd
            invokevirtual com.google.common.collect.ImmutableList.get:(I)Ljava/lang/Object;
            areturn
        end local 1 // int index
        end local 0 // com.google.common.collect.ImmutableList$SubList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/common/collect/ImmutableList$SubList;
            0    2     1  index  I
    Signature: (I)TE;
    MethodParameters:
       Name  Flags
      index  

  public com.google.common.collect.ImmutableList<E> subList(int, int);
    descriptor: (II)Lcom/google/common/collect/ImmutableList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.google.common.collect.ImmutableList$SubList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 476
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.length:I
            invokestatic com.google.common.base.Preconditions.checkPositionIndexes:(III)V
         1: .line 477
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.this$0:Lcom/google/common/collect/ImmutableList;
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.offset:I
            iadd
            iload 2 /* toIndex */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableList$SubList.offset:I
            iadd
            invokevirtual com.google.common.collect.ImmutableList.subList:(II)Lcom/google/common/collect/ImmutableList;
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.google.common.collect.ImmutableList$SubList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/google/common/collect/ImmutableList$SubList;
            0    2     1  fromIndex  I
            0    2     2    toIndex  I
    Signature: (II)Lcom/google/common/collect/ImmutableList<TE;>;
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  boolean isPartialView();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableList$SubList this
         0: .line 482
            iconst_1
            ireturn
        end local 0 // com.google.common.collect.ImmutableList$SubList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableList$SubList;

  public java.util.List subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            iload 2
            invokevirtual com.google.common.collect.ImmutableList$SubList.subList:(II)Lcom/google/common/collect/ImmutableList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/common/collect/ImmutableList<TE;>;
SourceFile: "ImmutableList.java"
NestHost: com.google.common.collect.ImmutableList
InnerClasses:
  SubList = com.google.common.collect.ImmutableList$SubList of com.google.common.collect.ImmutableList