public class io.netty.handler.codec.json.JsonObjectDecoder extends io.netty.handler.codec.ByteToMessageDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.json.JsonObjectDecoder
  super_class: io.netty.handler.codec.ByteToMessageDecoder
{
  private static final int ST_CORRUPTED;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

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

  private static final int ST_DECODING_NORMAL;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int ST_DECODING_ARRAY_STREAM;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

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

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

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

  private boolean insideString;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final int maxObjectLength;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean streamArrayElements;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
         0: .line 58
            aload 0 /* this */
            ldc 1048576
            invokespecial io.netty.handler.codec.json.JsonObjectDecoder.<init>:(I)V
         1: .line 59
            return
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/json/JsonObjectDecoder;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // int maxObjectLength
         0: .line 62
            aload 0 /* this */
            iload 1 /* maxObjectLength */
            iconst_0
            invokespecial io.netty.handler.codec.json.JsonObjectDecoder.<init>:(IZ)V
         1: .line 63
            return
        end local 1 // int maxObjectLength
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0    2     1  maxObjectLength  I
    MethodParameters:
                 Name  Flags
      maxObjectLength  

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // boolean streamArrayElements
         0: .line 66
            aload 0 /* this */
            ldc 1048576
            iload 1 /* streamArrayElements */
            invokespecial io.netty.handler.codec.json.JsonObjectDecoder.<init>:(IZ)V
         1: .line 67
            return
        end local 1 // boolean streamArrayElements
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0    2     1  streamArrayElements  Z
    MethodParameters:
                     Name  Flags
      streamArrayElements  

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // int maxObjectLength
        start local 2 // boolean streamArrayElements
         0: .line 78
            aload 0 /* this */
            invokespecial io.netty.handler.codec.ByteToMessageDecoder.<init>:()V
         1: .line 79
            iload 1 /* maxObjectLength */
            iconst_1
            if_icmpge 3
         2: .line 80
            new java.lang.IllegalArgumentException
            dup
            ldc "maxObjectLength must be a positive int"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 82
      StackMap locals: io.netty.handler.codec.json.JsonObjectDecoder int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* maxObjectLength */
            putfield io.netty.handler.codec.json.JsonObjectDecoder.maxObjectLength:I
         4: .line 83
            aload 0 /* this */
            iload 2 /* streamArrayElements */
            putfield io.netty.handler.codec.json.JsonObjectDecoder.streamArrayElements:Z
         5: .line 84
            return
        end local 2 // boolean streamArrayElements
        end local 1 // int maxObjectLength
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    6     0                 this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0    6     1      maxObjectLength  I
            0    6     2  streamArrayElements  Z
    MethodParameters:
                     Name  Flags
      maxObjectLength      
      streamArrayElements  

  protected void decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.buffer.ByteBuf in
        start local 3 // java.util.List out
         0: .line 88
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
            iconst_m1
            if_icmpne 3
         1: .line 89
            aload 2 /* in */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 90
            return
         3: .line 93
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            if_icmple 5
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.lastReaderIndex:I
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            if_icmpeq 5
         4: .line 94
            aload 0 /* this */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.lastReaderIndex:I
            isub
            iadd
            putfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
         5: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
            istore 4 /* idx */
        start local 4 // int idx
         6: .line 99
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.writerIndex:()I
            istore 5 /* wrtIdx */
        start local 5 // int wrtIdx
         7: .line 101
            iload 5 /* wrtIdx */
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.maxObjectLength:I
            if_icmple 56
         8: .line 103
            aload 2 /* in */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
         9: .line 104
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.reset:()V
        10: .line 105
            new io.netty.handler.codec.TooLongFrameException
            dup
        11: .line 106
            new java.lang.StringBuilder
            dup
            ldc "object length exceeds "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.maxObjectLength:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 5 /* wrtIdx */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes discarded"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 105
            invokespecial io.netty.handler.codec.TooLongFrameException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 110
      StackMap locals: int int
      StackMap stack:
            aload 2 /* in */
            iload 4 /* idx */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            istore 6 /* c */
        start local 6 // byte c
        14: .line 111
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
            iconst_1
            if_icmpne 23
        15: .line 112
            aload 0 /* this */
            iload 6 /* c */
            aload 2 /* in */
            iload 4 /* idx */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.decodeByte:(BLio/netty/buffer/ByteBuf;I)V
        16: .line 116
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
            ifne 55
        17: .line 117
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* in */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            iload 4 /* idx */
            iconst_1
            iadd
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            isub
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.extractObject:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            astore 7 /* json */
        start local 7 // io.netty.buffer.ByteBuf json
        18: .line 118
            aload 7 /* json */
            ifnull 20
        19: .line 119
            aload 3 /* out */
            aload 7 /* json */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        20: .line 124
      StackMap locals: int io.netty.buffer.ByteBuf
      StackMap stack:
            aload 2 /* in */
            iload 4 /* idx */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
        21: .line 127
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.reset:()V
        end local 7 // io.netty.buffer.ByteBuf json
        22: .line 129
            goto 55
      StackMap locals:
      StackMap stack:
        23: aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
            iconst_2
            if_icmpne 43
        24: .line 130
            aload 0 /* this */
            iload 6 /* c */
            aload 2 /* in */
            iload 4 /* idx */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.decodeByte:(BLio/netty/buffer/ByteBuf;I)V
        25: .line 132
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
            ifne 55
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
            iconst_1
            if_icmpne 26
            iload 6 /* c */
            bipush 44
            if_icmpeq 27
      StackMap locals:
      StackMap stack:
        26: aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
            ifne 55
            iload 6 /* c */
            bipush 93
            if_icmpne 55
        27: .line 135
      StackMap locals:
      StackMap stack:
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            istore 7 /* i */
        start local 7 // int i
        28: goto 31
        29: .line 136
      StackMap locals: int
      StackMap stack:
            aload 2 /* in */
            iconst_1
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
        30: .line 135
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        31: aload 2 /* in */
            iload 7 /* i */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            invokestatic java.lang.Character.isWhitespace:(I)Z
            ifne 29
        end local 7 // int i
        32: .line 140
            iload 4 /* idx */
            iconst_1
            isub
            istore 7 /* idxNoSpaces */
        start local 7 // int idxNoSpaces
        33: .line 141
            goto 35
        34: .line 142
      StackMap locals:
      StackMap stack:
            iinc 7 /* idxNoSpaces */ -1
        35: .line 141
      StackMap locals:
      StackMap stack:
            iload 7 /* idxNoSpaces */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            if_icmplt 36
            aload 2 /* in */
            iload 7 /* idxNoSpaces */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            invokestatic java.lang.Character.isWhitespace:(I)Z
            ifne 34
        36: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ctx */
            aload 2 /* in */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            iload 7 /* idxNoSpaces */
            iconst_1
            iadd
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            isub
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.extractObject:(Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            astore 8 /* json */
        start local 8 // io.netty.buffer.ByteBuf json
        37: .line 146
            aload 8 /* json */
            ifnull 39
        38: .line 147
            aload 3 /* out */
            aload 8 /* json */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        39: .line 150
      StackMap locals: io.netty.buffer.ByteBuf
      StackMap stack:
            aload 2 /* in */
            iload 4 /* idx */
            iconst_1
            iadd
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
        40: .line 152
            iload 6 /* c */
            bipush 93
            if_icmpne 55
        41: .line 153
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.reset:()V
        end local 8 // io.netty.buffer.ByteBuf json
        end local 7 // int idxNoSpaces
        42: .line 157
            goto 55
      StackMap locals:
      StackMap stack:
        43: iload 6 /* c */
            bipush 123
            if_icmpeq 44
            iload 6 /* c */
            bipush 91
            if_icmpne 48
        44: .line 158
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* c */
            invokevirtual io.netty.handler.codec.json.JsonObjectDecoder.initDecoding:(B)V
        45: .line 160
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
            iconst_2
            if_icmpne 55
        46: .line 162
            aload 2 /* in */
            iconst_1
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
        47: .line 165
            goto 55
      StackMap locals:
      StackMap stack:
        48: iload 6 /* c */
            invokestatic java.lang.Character.isWhitespace:(I)Z
            ifeq 51
        49: .line 166
            aload 2 /* in */
            iconst_1
            invokevirtual io.netty.buffer.ByteBuf.skipBytes:(I)Lio/netty/buffer/ByteBuf;
            pop
        50: .line 167
            goto 55
        51: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
        52: .line 169
            new io.netty.handler.codec.CorruptedFrameException
            dup
        53: .line 170
            new java.lang.StringBuilder
            dup
            ldc "invalid JSON received at byte position "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* idx */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* in */
            invokestatic io.netty.buffer.ByteBufUtil.hexDump:(Lio/netty/buffer/ByteBuf;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        54: .line 169
            invokespecial io.netty.handler.codec.CorruptedFrameException.<init>:(Ljava/lang/String;)V
            athrow
        end local 6 // byte c
        55: .line 109
      StackMap locals:
      StackMap stack:
            iinc 4 /* idx */ 1
      StackMap locals:
      StackMap stack:
        56: iload 4 /* idx */
            iload 5 /* wrtIdx */
            if_icmplt 13
        57: .line 174
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            ifne 60
        58: .line 175
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
        59: .line 176
            goto 61
        60: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* idx */
            putfield io.netty.handler.codec.json.JsonObjectDecoder.idx:I
        61: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* in */
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            putfield io.netty.handler.codec.json.JsonObjectDecoder.lastReaderIndex:I
        62: .line 180
            return
        end local 5 // int wrtIdx
        end local 4 // int idx
        end local 3 // java.util.List out
        end local 2 // io.netty.buffer.ByteBuf in
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   63     0         this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0   63     1          ctx  Lio/netty/channel/ChannelHandlerContext;
            0   63     2           in  Lio/netty/buffer/ByteBuf;
            0   63     3          out  Ljava/util/List<Ljava/lang/Object;>;
            6   63     4          idx  I
            7   63     5       wrtIdx  I
           14   55     6            c  B
           18   22     7         json  Lio/netty/buffer/ByteBuf;
           28   32     7            i  I
           33   42     7  idxNoSpaces  I
           37   42     8         json  Lio/netty/buffer/ByteBuf;
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
      Name  Flags
      ctx   
      in    
      out   

  protected io.netty.buffer.ByteBuf extractObject(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, int, int);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // io.netty.channel.ChannelHandlerContext ctx
        start local 2 // io.netty.buffer.ByteBuf buffer
        start local 3 // int index
        start local 4 // int length
         0: .line 187
            aload 2 /* buffer */
            iload 3 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.retainedSlice:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 4 // int length
        end local 3 // int index
        end local 2 // io.netty.buffer.ByteBuf buffer
        end local 1 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0    1     1     ctx  Lio/netty/channel/ChannelHandlerContext;
            0    1     2  buffer  Lio/netty/buffer/ByteBuf;
            0    1     3   index  I
            0    1     4  length  I
    MethodParameters:
        Name  Flags
      ctx     
      buffer  
      index   
      length  

  private void decodeByte(byte, io.netty.buffer.ByteBuf, int);
    descriptor: (BLio/netty/buffer/ByteBuf;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // byte c
        start local 2 // io.netty.buffer.ByteBuf in
        start local 3 // int idx
         0: .line 191
            iload 1 /* c */
            bipush 123
            if_icmpeq 1
            iload 1 /* c */
            bipush 91
            if_icmpne 4
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
            ifne 4
         2: .line 192
            aload 0 /* this */
            dup
            getfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
            iconst_1
            iadd
            putfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
         3: .line 193
            goto 21
      StackMap locals:
      StackMap stack:
         4: iload 1 /* c */
            bipush 125
            if_icmpeq 5
            iload 1 /* c */
            bipush 93
            if_icmpne 8
      StackMap locals:
      StackMap stack:
         5: aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
            ifne 8
         6: .line 194
            aload 0 /* this */
            dup
            getfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
            iconst_1
            isub
            putfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
         7: .line 195
            goto 21
      StackMap locals:
      StackMap stack:
         8: iload 1 /* c */
            bipush 34
            if_icmpne 21
         9: .line 198
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
            ifne 12
        10: .line 199
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
        11: .line 200
            goto 21
        12: .line 201
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 4 /* backslashCount */
        start local 4 // int backslashCount
        13: .line 202
            iinc 3 /* idx */ -1
        14: .line 203
            goto 18
        15: .line 204
      StackMap locals: int
      StackMap stack:
            aload 2 /* in */
            iload 3 /* idx */
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            bipush 92
            if_icmpne 19
        16: .line 205
            iinc 4 /* backslashCount */ 1
        17: .line 206
            iinc 3 /* idx */ -1
        18: .line 203
      StackMap locals:
      StackMap stack:
            iload 3 /* idx */
            ifge 15
        19: .line 212
      StackMap locals:
      StackMap stack:
            iload 4 /* backslashCount */
            iconst_2
            irem
            ifne 21
        20: .line 214
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
        end local 4 // int backslashCount
        21: .line 218
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int idx
        end local 2 // io.netty.buffer.ByteBuf in
        end local 1 // byte c
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   22     0            this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0   22     1               c  B
            0   22     2              in  Lio/netty/buffer/ByteBuf;
            0   22     3             idx  I
           13   21     4  backslashCount  I
    MethodParameters:
      Name  Flags
      c     
      in    
      idx   

  private void initDecoding(byte);
    descriptor: (B)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
        start local 1 // byte openingBrace
         0: .line 221
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
         1: .line 222
            iload 1 /* openingBrace */
            bipush 91
            if_icmpne 4
            aload 0 /* this */
            getfield io.netty.handler.codec.json.JsonObjectDecoder.streamArrayElements:Z
            ifeq 4
         2: .line 223
            aload 0 /* this */
            iconst_2
            putfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
         3: .line 224
            goto 5
         4: .line 225
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
         5: .line 227
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte openingBrace
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lio/netty/handler/codec/json/JsonObjectDecoder;
            0    6     1  openingBrace  B
    MethodParameters:
              Name  Flags
      openingBrace  

  private void reset();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
         0: .line 230
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.json.JsonObjectDecoder.insideString:Z
         1: .line 231
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.json.JsonObjectDecoder.state:I
         2: .line 232
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.json.JsonObjectDecoder.openBraces:I
         3: .line 233
            return
        end local 0 // io.netty.handler.codec.json.JsonObjectDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/handler/codec/json/JsonObjectDecoder;
}
SourceFile: "JsonObjectDecoder.java"