final class com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream extends java.io.FilterInputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream
  super_class: java.io.FilterInputStream
{
  private int limit;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.io.InputStream, int);
    descriptor: (Ljava/io/InputStream;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
        start local 1 // java.io.InputStream in
        start local 2 // int limit
         0: .line 283
            aload 0 /* this */
            aload 1 /* in */
            invokespecial java.io.FilterInputStream.<init>:(Ljava/io/InputStream;)V
         1: .line 284
            aload 0 /* this */
            iload 2 /* limit */
            putfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
         2: .line 285
            return
        end local 2 // int limit
        end local 1 // java.io.InputStream in
        end local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;
            0    3     1     in  Ljava/io/InputStream;
            0    3     2  limit  I
    MethodParameters:
       Name  Flags
      in     
      limit  

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
         0: .line 289
            aload 0 /* this */
            invokespecial java.io.FilterInputStream.available:()I
            aload 0 /* this */
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            invokestatic java.lang.Math.min:(II)I
            ireturn
        end local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
         0: .line 294
            aload 0 /* this */
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            ifgt 2
         1: .line 295
            iconst_m1
            ireturn
         2: .line 297
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokespecial java.io.FilterInputStream.read:()I
            istore 1 /* result */
        start local 1 // int result
         3: .line 298
            iload 1 /* result */
            iflt 5
         4: .line 299
            aload 0 /* this */
            dup
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            iconst_1
            isub
            putfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
         5: .line 301
      StackMap locals: int
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;
            3    6     1  result  I
    Exceptions:
      throws java.io.IOException

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 306
            aload 0 /* this */
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            ifgt 2
         1: .line 307
            iconst_m1
            ireturn
         2: .line 309
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            aload 0 /* this */
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* len */
         3: .line 310
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokespecial java.io.FilterInputStream.read:([BII)I
            istore 4 /* result */
        start local 4 // int result
         4: .line 311
            iload 4 /* result */
            iflt 6
         5: .line 312
            aload 0 /* this */
            dup
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            iload 4 /* result */
            isub
            putfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
         6: .line 314
      StackMap locals: int
      StackMap stack:
            iload 4 /* result */
            ireturn
        end local 4 // int result
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;
            0    7     1       b  [B
            0    7     2     off  I
            0    7     3     len  I
            4    7     4  result  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
        start local 1 // long n
         0: .line 319
            aload 0 /* this */
            lload 1 /* n */
            aload 0 /* this */
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            i2l
            invokestatic java.lang.Math.min:(JJ)J
            invokespecial java.io.FilterInputStream.skip:(J)J
            lstore 3 /* result */
        start local 3 // long result
         1: .line 320
            lload 3 /* result */
            lconst_0
            lcmp
            iflt 3
         2: .line 321
            aload 0 /* this */
            dup
            getfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
            i2l
            lload 3 /* result */
            lsub
            l2i
            putfield com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream.limit:I
         3: .line 323
      StackMap locals: long
      StackMap stack:
            lload 3 /* result */
            lreturn
        end local 3 // long result
        end local 1 // long n
        end local 0 // com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/protobuf/AbstractMessageLite$Builder$LimitedInputStream;
            0    4     1       n  J
            1    4     3  result  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     final
}
SourceFile: "AbstractMessageLite.java"
NestHost: com.google.protobuf.AbstractMessageLite
InnerClasses:
  public abstract Builder = com.google.protobuf.AbstractMessageLite$Builder of com.google.protobuf.AbstractMessageLite
  final LimitedInputStream = com.google.protobuf.AbstractMessageLite$Builder$LimitedInputStream of com.google.protobuf.AbstractMessageLite$Builder