public class com.fasterxml.jackson.core.io.IOContext
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.fasterxml.jackson.core.io.IOContext
  super_class: java.lang.Object
{
  protected final java.lang.Object _sourceRef;
    descriptor: Ljava/lang/Object;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected com.fasterxml.jackson.core.JsonEncoding _encoding;
    descriptor: Lcom/fasterxml/jackson/core/JsonEncoding;
    flags: (0x0004) ACC_PROTECTED

  protected final boolean _managedResource;
    descriptor: Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final com.fasterxml.jackson.core.util.BufferRecycler _bufferRecycler;
    descriptor: Lcom/fasterxml/jackson/core/util/BufferRecycler;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected byte[] _readIOBuffer;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected byte[] _writeEncodingBuffer;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected byte[] _base64Buffer;
    descriptor: [B
    flags: (0x0004) ACC_PROTECTED

  protected char[] _tokenCBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected char[] _concatCBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  protected char[] _nameCopyBuffer;
    descriptor: [C
    flags: (0x0004) ACC_PROTECTED

  public void <init>(com.fasterxml.jackson.core.util.BufferRecycler, java.lang.Object, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/util/BufferRecycler;Ljava/lang/Object;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // com.fasterxml.jackson.core.util.BufferRecycler br
        start local 2 // java.lang.Object sourceRef
        start local 3 // boolean managedResource
         0: .line 101
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 103
            aload 0 /* this */
            aload 1 /* br */
            putfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
         2: .line 104
            aload 0 /* this */
            aload 2 /* sourceRef */
            putfield com.fasterxml.jackson.core.io.IOContext._sourceRef:Ljava/lang/Object;
         3: .line 105
            aload 0 /* this */
            iload 3 /* managedResource */
            putfield com.fasterxml.jackson.core.io.IOContext._managedResource:Z
         4: .line 106
            return
        end local 3 // boolean managedResource
        end local 2 // java.lang.Object sourceRef
        end local 1 // com.fasterxml.jackson.core.util.BufferRecycler br
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1               br  Lcom/fasterxml/jackson/core/util/BufferRecycler;
            0    5     2        sourceRef  Ljava/lang/Object;
            0    5     3  managedResource  Z
    MethodParameters:
                 Name  Flags
      br               
      sourceRef        
      managedResource  

  public void setEncoding(com.fasterxml.jackson.core.JsonEncoding);
    descriptor: (Lcom/fasterxml/jackson/core/JsonEncoding;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // com.fasterxml.jackson.core.JsonEncoding enc
         0: .line 109
            aload 0 /* this */
            aload 1 /* enc */
            putfield com.fasterxml.jackson.core.io.IOContext._encoding:Lcom/fasterxml/jackson/core/JsonEncoding;
         1: .line 110
            return
        end local 1 // com.fasterxml.jackson.core.JsonEncoding enc
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1   enc  Lcom/fasterxml/jackson/core/JsonEncoding;
    MethodParameters:
      Name  Flags
      enc   

  public com.fasterxml.jackson.core.io.IOContext withEncoding(com.fasterxml.jackson.core.JsonEncoding);
    descriptor: (Lcom/fasterxml/jackson/core/JsonEncoding;)Lcom/fasterxml/jackson/core/io/IOContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // com.fasterxml.jackson.core.JsonEncoding enc
         0: .line 116
            aload 0 /* this */
            aload 1 /* enc */
            putfield com.fasterxml.jackson.core.io.IOContext._encoding:Lcom/fasterxml/jackson/core/JsonEncoding;
         1: .line 117
            aload 0 /* this */
            areturn
        end local 1 // com.fasterxml.jackson.core.JsonEncoding enc
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1   enc  Lcom/fasterxml/jackson/core/JsonEncoding;
    MethodParameters:
      Name  Flags
      enc   

  public java.lang.Object getSourceReference();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 126
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._sourceRef:Ljava/lang/Object;
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public com.fasterxml.jackson.core.JsonEncoding getEncoding();
    descriptor: ()Lcom/fasterxml/jackson/core/JsonEncoding;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 127
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._encoding:Lcom/fasterxml/jackson/core/JsonEncoding;
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public boolean isResourceManaged();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 128
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._managedResource:Z
            ireturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public com.fasterxml.jackson.core.util.TextBuffer constructTextBuffer();
    descriptor: ()Lcom/fasterxml/jackson/core/util/TextBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 137
            new com.fasterxml.jackson.core.util.TextBuffer
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            invokespecial com.fasterxml.jackson.core.util.TextBuffer.<init>:(Lcom/fasterxml/jackson/core/util/BufferRecycler;)V
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public byte[] allocReadIOBuffer();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 146
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 147
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(I)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public byte[] allocReadIOBuffer(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // int minSize
         0: .line 154
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 155
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            iload 1 /* minSize */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(II)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
            areturn
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  minSize  I
    MethodParameters:
         Name  Flags
      minSize  

  public byte[] allocWriteEncodingBuffer();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 159
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 160
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(I)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public byte[] allocWriteEncodingBuffer(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // int minSize
         0: .line 167
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 168
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_1
            iload 1 /* minSize */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(II)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
            areturn
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  minSize  I
    MethodParameters:
         Name  Flags
      minSize  

  public byte[] allocBase64Buffer();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 175
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 176
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_3
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(I)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public byte[] allocBase64Buffer(int);
    descriptor: (I)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // int minSize
         0: .line 183
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 184
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_3
            iload 1 /* minSize */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocByteBuffer:(II)[B
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
            areturn
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  minSize  I
    MethodParameters:
         Name  Flags
      minSize  

  public char[] allocTokenBuffer();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 188
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 189
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocCharBuffer:(I)[C
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public char[] allocTokenBuffer(int);
    descriptor: (I)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // int minSize
         0: .line 196
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 197
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            iload 1 /* minSize */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocCharBuffer:(II)[C
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
            areturn
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  minSize  I
    MethodParameters:
         Name  Flags
      minSize  

  public char[] allocConcatBuffer();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 201
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._concatCBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 202
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocCharBuffer:(I)[C
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._concatCBuffer:[C
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/IOContext;

  public char[] allocNameCopyBuffer(int);
    descriptor: (I)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // int minSize
         0: .line 206
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._nameCopyBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyAlloc:(Ljava/lang/Object;)V
         1: .line 207
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_3
            iload 1 /* minSize */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocCharBuffer:(II)[C
            dup_x1
            putfield com.fasterxml.jackson.core.io.IOContext._nameCopyBuffer:[C
            areturn
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  minSize  I
    MethodParameters:
         Name  Flags
      minSize  

  public void releaseReadIOBuffer(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // byte[] buf
         0: .line 215
            aload 1 /* buf */
            ifnull 4
         1: .line 219
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([B[B)V
         2: .line 220
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._readIOBuffer:[B
         3: .line 221
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseByteBuffer:(I[B)V
         4: .line 223
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [B
    MethodParameters:
      Name  Flags
      buf   

  public void releaseWriteEncodingBuffer(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // byte[] buf
         0: .line 226
            aload 1 /* buf */
            ifnull 4
         1: .line 230
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([B[B)V
         2: .line 231
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._writeEncodingBuffer:[B
         3: .line 232
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_1
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseByteBuffer:(I[B)V
         4: .line 234
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [B
    MethodParameters:
      Name  Flags
      buf   

  public void releaseBase64Buffer(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // byte[] buf
         0: .line 237
            aload 1 /* buf */
            ifnull 4
         1: .line 238
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([B[B)V
         2: .line 239
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._base64Buffer:[B
         3: .line 240
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_3
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseByteBuffer:(I[B)V
         4: .line 242
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [B
    MethodParameters:
      Name  Flags
      buf   

  public void releaseTokenBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // char[] buf
         0: .line 245
            aload 1 /* buf */
            ifnull 4
         1: .line 246
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([C[C)V
         2: .line 247
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._tokenCBuffer:[C
         3: .line 248
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_0
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseCharBuffer:(I[C)V
         4: .line 250
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [C
    MethodParameters:
      Name  Flags
      buf   

  public void releaseConcatBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // char[] buf
         0: .line 253
            aload 1 /* buf */
            ifnull 4
         1: .line 255
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._concatCBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([C[C)V
         2: .line 256
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._concatCBuffer:[C
         3: .line 257
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_1
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseCharBuffer:(I[C)V
         4: .line 259
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [C
    MethodParameters:
      Name  Flags
      buf   

  public void releaseNameCopyBuffer(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // char[] buf
         0: .line 262
            aload 1 /* buf */
            ifnull 4
         1: .line 264
            aload 0 /* this */
            aload 1 /* buf */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._nameCopyBuffer:[C
            invokevirtual com.fasterxml.jackson.core.io.IOContext._verifyRelease:([C[C)V
         2: .line 265
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.IOContext._nameCopyBuffer:[C
         3: .line 266
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.IOContext._bufferRecycler:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_3
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseCharBuffer:(I[C)V
         4: .line 268
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    5     1   buf  [C
    MethodParameters:
      Name  Flags
      buf   

  protected final void _verifyAlloc(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // java.lang.Object buffer
         0: .line 277
            aload 1 /* buffer */
            ifnull 1
            new java.lang.IllegalStateException
            dup
            ldc "Trying to call same allocXxx() method second time"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 278
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object buffer
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  buffer  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      buffer  

  protected final void _verifyRelease(byte[], byte[]);
    descriptor: ([B[B)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // byte[] toRelease
        start local 2 // byte[] src
         0: .line 282
            aload 1 /* toRelease */
            aload 2 /* src */
            if_acmpeq 1
            aload 1 /* toRelease */
            arraylength
            aload 2 /* src */
            arraylength
            if_icmpge 1
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.wrongBuf:()Ljava/lang/IllegalArgumentException;
            athrow
         1: .line 283
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] src
        end local 1 // byte[] toRelease
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  toRelease  [B
            0    2     2        src  [B
    MethodParameters:
           Name  Flags
      toRelease  
      src        

  protected final void _verifyRelease(char[], char[]);
    descriptor: ([C[C)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
        start local 1 // char[] toRelease
        start local 2 // char[] src
         0: .line 287
            aload 1 /* toRelease */
            aload 2 /* src */
            if_acmpeq 1
            aload 1 /* toRelease */
            arraylength
            aload 2 /* src */
            arraylength
            if_icmpge 1
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.wrongBuf:()Ljava/lang/IllegalArgumentException;
            athrow
         1: .line 288
      StackMap locals:
      StackMap stack:
            return
        end local 2 // char[] src
        end local 1 // char[] toRelease
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/fasterxml/jackson/core/io/IOContext;
            0    2     1  toRelease  [C
            0    2     2        src  [C
    MethodParameters:
           Name  Flags
      toRelease  
      src        

  private java.lang.IllegalArgumentException wrongBuf();
    descriptor: ()Ljava/lang/IllegalArgumentException;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.IOContext this
         0: .line 292
            new java.lang.IllegalArgumentException
            dup
            ldc "Trying to release buffer smaller than original"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            areturn
        end local 0 // com.fasterxml.jackson.core.io.IOContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/io/IOContext;
}
SourceFile: "IOContext.java"