class io.undertow.protocols.http2.Http2PushPromiseParser extends io.undertow.protocols.http2.Http2HeaderBlockParser
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.undertow.protocols.http2.Http2PushPromiseParser
  super_class: io.undertow.protocols.http2.Http2HeaderBlockParser
{
  private int paddingLength;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int promisedStreamId;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private static final int STREAM_MASK;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -129

  void <init>(int, io.undertow.protocols.http2.HpackDecoder, boolean, int, int, int);
    descriptor: (ILio/undertow/protocols/http2/HpackDecoder;ZIII)V
    flags: (0x0000) 
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
        start local 1 // int frameLength
        start local 2 // io.undertow.protocols.http2.HpackDecoder hpackDecoder
        start local 3 // boolean client
        start local 4 // int maxHeaders
        start local 5 // int streamId
        start local 6 // int maxHeaderListSize
         0: .line 37
            aload 0 /* this */
            iload 1 /* frameLength */
            aload 2 /* hpackDecoder */
            iload 3 /* client */
            iload 4 /* maxHeaders */
            iload 5 /* streamId */
            iload 6 /* maxHeaderListSize */
            invokespecial io.undertow.protocols.http2.Http2HeaderBlockParser.<init>:(ILio/undertow/protocols/http2/HpackDecoder;ZIII)V
         1: .line 32
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.paddingLength:I
         2: .line 38
            return
        end local 6 // int maxHeaderListSize
        end local 5 // int streamId
        end local 4 // int maxHeaders
        end local 3 // boolean client
        end local 2 // io.undertow.protocols.http2.HpackDecoder hpackDecoder
        end local 1 // int frameLength
        end local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Lio/undertow/protocols/http2/Http2PushPromiseParser;
            0    3     1        frameLength  I
            0    3     2       hpackDecoder  Lio/undertow/protocols/http2/HpackDecoder;
            0    3     3             client  Z
            0    3     4         maxHeaders  I
            0    3     5           streamId  I
            0    3     6  maxHeaderListSize  I
    MethodParameters:
                   Name  Flags
      frameLength        
      hpackDecoder       
      client             
      maxHeaders         
      streamId           
      maxHeaderListSize  

  protected boolean handleBeforeHeader(java.nio.ByteBuffer, io.undertow.protocols.http2.Http2FrameHeaderParser);
    descriptor: (Ljava/nio/ByteBuffer;Lio/undertow/protocols/http2/Http2FrameHeaderParser;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
        start local 1 // java.nio.ByteBuffer resource
        start local 2 // io.undertow.protocols.http2.Http2FrameHeaderParser headerParser
         0: .line 42
            aload 2 /* headerParser */
            getfield io.undertow.protocols.http2.Http2FrameHeaderParser.flags:I
            bipush 8
            invokestatic org.xnio.Bits.anyAreSet:(II)Z
            istore 3 /* hasPadding */
        start local 3 // boolean hasPadding
         1: .line 43
            iload 3 /* hasPadding */
            ifeq 2
            iconst_1
            goto 3
      StackMap locals: int
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: iconst_4
            iadd
            istore 4 /* reqLength */
        start local 4 // int reqLength
         4: .line 44
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 4 /* reqLength */
            if_icmpge 6
         5: .line 45
            iconst_0
            ireturn
         6: .line 47
      StackMap locals: int
      StackMap stack:
            iload 3 /* hasPadding */
            ifeq 8
         7: .line 48
            aload 0 /* this */
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.paddingLength:I
         8: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush -129
            iand
            bipush 24
            ishl
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
         9: .line 51
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 16
            ishl
            iadd
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
        10: .line 52
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            bipush 8
            ishl
            iadd
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
        11: .line 53
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
            aload 1 /* resource */
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
            iadd
            putfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
        12: .line 54
            iconst_1
            ireturn
        end local 4 // int reqLength
        end local 3 // boolean hasPadding
        end local 2 // io.undertow.protocols.http2.Http2FrameHeaderParser headerParser
        end local 1 // java.nio.ByteBuffer resource
        end local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lio/undertow/protocols/http2/Http2PushPromiseParser;
            0   13     1      resource  Ljava/nio/ByteBuffer;
            0   13     2  headerParser  Lio/undertow/protocols/http2/Http2FrameHeaderParser;
            1   13     3    hasPadding  Z
            4   13     4     reqLength  I
    MethodParameters:
              Name  Flags
      resource      
      headerParser  

  protected int getPaddingLength();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
         0: .line 58
            aload 0 /* this */
            getfield io.undertow.protocols.http2.Http2PushPromiseParser.paddingLength:I
            ireturn
        end local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/Http2PushPromiseParser;

  public int getPromisedStreamId();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
         0: .line 62
            aload 0 /* this */
            getfield io.undertow.protocols.http2.Http2PushPromiseParser.promisedStreamId:I
            ireturn
        end local 0 // io.undertow.protocols.http2.Http2PushPromiseParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/Http2PushPromiseParser;
}
SourceFile: "Http2PushPromiseParser.java"