public final class com.fasterxml.jackson.core.util.TextBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.jackson.core.util.TextBuffer
  super_class: java.lang.Object
{
  static final char[] NO_CHARS;
    descriptor: [C
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final int MIN_SEGMENT_LEN;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 500

  static final int MAX_SEGMENT_LEN;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 65536

  private final com.fasterxml.jackson.core.util.BufferRecycler _allocator;
    descriptor: Lcom/fasterxml/jackson/core/util/BufferRecycler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private char[] _inputBuffer;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.util.ArrayList<char[]> _segments;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/ArrayList<[C>;

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

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

  private char[] _currentSegment;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

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

  private java.lang.String _resultString;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private char[] _resultArray;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 29
            iconst_0
            newarray 5
            putstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
         1: .line 42
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(com.fasterxml.jackson.core.util.BufferRecycler);
    descriptor: (Lcom/fasterxml/jackson/core/util/BufferRecycler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // com.fasterxml.jackson.core.util.BufferRecycler allocator
         0: .line 123
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 124
            aload 0 /* this */
            aload 1 /* allocator */
            putfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
         2: .line 125
            return
        end local 1 // com.fasterxml.jackson.core.util.BufferRecycler allocator
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    3     1  allocator  Lcom/fasterxml/jackson/core/util/BufferRecycler;
    MethodParameters:
           Name  Flags
      allocator  

  protected void <init>(com.fasterxml.jackson.core.util.BufferRecycler, char[]);
    descriptor: (Lcom/fasterxml/jackson/core/util/BufferRecycler;[C)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // com.fasterxml.jackson.core.util.BufferRecycler allocator
        start local 2 // char[] initialSegment
         0: .line 128
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 129
            aload 0 /* this */
            aload 1 /* allocator */
            putfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
         2: .line 130
            aload 0 /* this */
            aload 2 /* initialSegment */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         3: .line 131
            aload 0 /* this */
            aload 2 /* initialSegment */
            arraylength
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         4: .line 132
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         5: .line 133
            return
        end local 2 // char[] initialSegment
        end local 1 // com.fasterxml.jackson.core.util.BufferRecycler allocator
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    6     1       allocator  Lcom/fasterxml/jackson/core/util/BufferRecycler;
            0    6     2  initialSegment  [C
    MethodParameters:
                Name  Flags
      allocator       
      initialSegment  

  public static com.fasterxml.jackson.core.util.TextBuffer fromInitial(char[]);
    descriptor: ([C)Lcom/fasterxml/jackson/core/util/TextBuffer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // char[] initialSegment
         0: .line 147
            new com.fasterxml.jackson.core.util.TextBuffer
            dup
            aconst_null
            aload 0 /* initialSegment */
            invokespecial com.fasterxml.jackson.core.util.TextBuffer.<init>:(Lcom/fasterxml/jackson/core/util/BufferRecycler;[C)V
            areturn
        end local 0 // char[] initialSegment
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0  initialSegment  [C
    MethodParameters:
                Name  Flags
      initialSegment  

  public void releaseBuffers();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 165
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 166
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 167
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 169
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 172
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 174
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 175
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnull 12
         8: .line 180
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 12
         9: .line 182
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* buf */
        start local 1 // char[] buf
        10: .line 183
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        11: .line 184
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_2
            aload 1 /* buf */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.releaseCharBuffer:(I[C)V
        end local 1 // char[] buf
        12: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
           10   12     1   buf  [C

  public void resetWithEmpty();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 195
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 196
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 197
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 199
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 200
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 201
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 204
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 205
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 207
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public void resetWith(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // char ch
         0: .line 219
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 220
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 222
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 223
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 225
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         5: .line 226
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         6: .line 227
            goto 9
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 9
         8: .line 228
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         9: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 1 /* ch */
            castore
        10: .line 231
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        11: .line 232
            return
        end local 1 // char ch
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   12     1    ch  C
    MethodParameters:
      Name  Flags
      ch    

  public void resetWithShared(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // char[] buf
        start local 2 // int offset
        start local 3 // int len
         0: .line 247
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         1: .line 248
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         2: .line 251
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         3: .line 252
            aload 0 /* this */
            iload 2 /* offset */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         4: .line 253
            aload 0 /* this */
            iload 3 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         5: .line 256
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 257
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 259
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    8     1     buf  [C
            0    8     2  offset  I
            0    8     3     len  I
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     

  public void resetWithCopy(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // char[] buf
        start local 2 // int offset
        start local 3 // int len
         0: .line 263
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 264
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 265
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 267
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 268
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 271
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 272
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 273
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 274
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        10: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        11: .line 277
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* offset */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.append:([CII)V
        12: .line 278
            return
        end local 3 // int len
        end local 2 // int offset
        end local 1 // char[] buf
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   13     1     buf  [C
            0   13     2  offset  I
            0   13     3     len  I
    MethodParameters:
        Name  Flags
      buf     
      offset  
      len     

  public void resetWithCopy(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // java.lang.String text
        start local 2 // int start
        start local 3 // int len
         0: .line 283
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 284
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 285
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 287
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 288
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 290
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 291
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 292
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 293
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        10: .line 295
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        11: .line 296
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.append:(Ljava/lang/String;II)V
        12: .line 297
            return
        end local 3 // int len
        end local 2 // int start
        end local 1 // java.lang.String text
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   13     1   text  Ljava/lang/String;
            0   13     2  start  I
            0   13     3    len  I
    MethodParameters:
       Name  Flags
      text   
      start  
      len    

  public void resetWithString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // java.lang.String value
         0: .line 301
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 302
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 303
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 305
            aload 0 /* this */
            aload 1 /* value */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 306
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 308
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 309
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         8: .line 313
            return
        end local 1 // java.lang.String value
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    9     1  value  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      value  

  public char[] getBufferWithoutReset();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 324
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  private char[] buf(int);
    descriptor: (I)[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int needed
         0: .line 331
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnull 2
         1: .line 332
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            iconst_2
            iload 1 /* needed */
            invokevirtual com.fasterxml.jackson.core.util.BufferRecycler.allocCharBuffer:(II)[C
            areturn
         2: .line 334
      StackMap locals:
      StackMap stack:
            iload 1 /* needed */
            sipush 500
            invokestatic java.lang.Math.max:(II)I
            newarray 5
            areturn
        end local 1 // int needed
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    3     1  needed  I
    MethodParameters:
        Name  Flags
      needed  

  private void clearSegments();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 339
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         1: .line 347
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 348
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         3: .line 349
            return
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 361
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 362
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            ireturn
         2: .line 364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         3: .line 365
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         4: .line 367
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         5: .line 368
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iadd
            ireturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public int getTextOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 379
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public boolean hasTextAsCharacters();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 392
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            ifge 1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
         2: .line 394
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 3
            iconst_0
            ireturn
         3: .line 395
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public char[] getTextBuffer();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 408
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            areturn
         1: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            areturn
         2: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 4
         3: .line 411
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            areturn
         4: .line 414
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifne 8
         5: .line 415
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 6
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
      StackMap locals:
      StackMap stack: char[]
         7: areturn
         8: .line 418
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsArray:()[C
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public java.lang.String contentsAsString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 436
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnonnull 27
         1: .line 438
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         2: .line 439
            aload 0 /* this */
            new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokespecial java.lang.String.<init>:([C)V
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 440
            goto 27
         4: .line 442
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 9
         5: .line 443
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            if_icmpge 7
         6: .line 444
            aload 0 /* this */
            ldc ""
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            areturn
         7: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            invokespecial java.lang.String.<init>:([CII)V
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         8: .line 447
            goto 27
         9: .line 449
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            istore 1 /* segLen */
        start local 1 // int segLen
        10: .line 450
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
        11: .line 452
            iload 1 /* segLen */
            ifne 16
        12: .line 453
            aload 0 /* this */
            iload 2 /* currLen */
            ifne 13
            ldc ""
            goto 14
      StackMap locals: com.fasterxml.jackson.core.util.TextBuffer int int
      StackMap stack: com.fasterxml.jackson.core.util.TextBuffer
        13: new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 2 /* currLen */
            invokespecial java.lang.String.<init>:([CII)V
      StackMap locals: com.fasterxml.jackson.core.util.TextBuffer int int
      StackMap stack: com.fasterxml.jackson.core.util.TextBuffer java.lang.String
        14: putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
        15: .line 454
            goto 27
        16: .line 455
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            iload 1 /* segLen */
            iload 2 /* currLen */
            iadd
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 3 /* sb */
        start local 3 // java.lang.StringBuilder sb
        17: .line 457
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        18: .line 458
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        19: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 5 /* len */
        start local 5 // int len
        20: goto 24
        21: .line 459
      StackMap locals: java.lang.StringBuilder int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 6 /* curr */
        start local 6 // char[] curr
        22: .line 460
            aload 3 /* sb */
            aload 6 /* curr */
            iconst_0
            aload 6 /* curr */
            arraylength
            invokevirtual java.lang.StringBuilder.append:([CII)Ljava/lang/StringBuilder;
            pop
        end local 6 // char[] curr
        23: .line 458
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 21
        end local 5 // int len
        end local 4 // int i
        25: .line 464
      StackMap locals:
      StackMap stack:
            aload 3 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokevirtual java.lang.StringBuilder.append:([CII)Ljava/lang/StringBuilder;
            pop
        26: .line 465
            aload 0 /* this */
            aload 3 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
        end local 3 // java.lang.StringBuilder sb
        end local 2 // int currLen
        end local 1 // int segLen
        27: .line 471
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   28     0     this  Lcom/fasterxml/jackson/core/util/TextBuffer;
           10   27     1   segLen  I
           11   27     2  currLen  I
           17   27     3       sb  Ljava/lang/StringBuilder;
           19   25     4        i  I
           20   25     5      len  I
           22   23     6     curr  [C

  public char[] contentsAsArray();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 475
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 476
            aload 1 /* result */
            ifnonnull 3
         2: .line 477
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.resultArray:()[C
            dup
            astore 1 /* result */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         3: .line 479
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 1 // char[] result
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            1    4     1  result  [C

  public java.math.BigDecimal contentsAsDecimal();
    descriptor: ()Ljava/math/BigDecimal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 493
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
         1: .line 494
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseBigDecimal:([C)Ljava/math/BigDecimal;
            areturn
         2: .line 497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 4
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            ifnull 4
         3: .line 498
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseBigDecimal:([CII)Ljava/math/BigDecimal;
            areturn
         4: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            ifne 6
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 6
         5: .line 502
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseBigDecimal:([CII)Ljava/math/BigDecimal;
            areturn
         6: .line 505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsArray:()[C
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseBigDecimal:([C)Ljava/math/BigDecimal;
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
    Exceptions:
      throws java.lang.NumberFormatException

  public double contentsAsDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 517
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseDouble:(Ljava/lang/String;)D
            dreturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
    Exceptions:
      throws java.lang.NumberFormatException

  public int contentsAsInt(boolean);
    descriptor: (Z)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // boolean neg
         0: .line 536
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 4
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            ifnull 4
         1: .line 537
            iload 1 /* neg */
            ifeq 3
         2: .line 538
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            isub
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseInt:([CII)I
            ineg
            ireturn
         3: .line 540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseInt:([CII)I
            ireturn
         4: .line 542
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 543
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iconst_1
            isub
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseInt:([CII)I
            ineg
            ireturn
         6: .line 545
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseInt:([CII)I
            ireturn
        end local 1 // boolean neg
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    7     1   neg  Z
    MethodParameters:
      Name  Flags
      neg   

  public long contentsAsLong(boolean);
    descriptor: (Z)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // boolean neg
         0: .line 564
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 4
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            ifnull 4
         1: .line 565
            iload 1 /* neg */
            ifeq 3
         2: .line 566
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            isub
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseLong:([CII)J
            lneg
            lreturn
         3: .line 568
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseLong:([CII)J
            lreturn
         4: .line 570
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 571
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iconst_1
            isub
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseLong:([CII)J
            lneg
            lreturn
         6: .line 573
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokestatic com.fasterxml.jackson.core.io.NumberInput.parseLong:([CII)J
            lreturn
        end local 1 // boolean neg
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    7     1   neg  Z
    MethodParameters:
      Name  Flags
      neg   

  public int contentsToWriter(java.io.Writer);
    descriptor: (Ljava/io/Writer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // java.io.Writer w
         0: .line 589
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 3
         1: .line 590
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokevirtual java.io.Writer.write:([C)V
         2: .line 591
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         3: .line 593
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         4: .line 594
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         5: .line 595
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 11
         7: .line 599
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* len */
        start local 2 // int len
         8: .line 600
            iload 2 /* len */
            ifle 10
         9: .line 601
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iload 2 /* len */
            invokevirtual java.io.Writer.write:([CII)V
        10: .line 603
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            ireturn
        end local 2 // int len
        11: .line 606
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* total */
        start local 2 // int total
        12: .line 607
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 22
        13: .line 608
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        14: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 4 /* end */
        start local 4 // int end
        15: goto 21
        16: .line 609
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            iload 3 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 5 /* curr */
        start local 5 // char[] curr
        17: .line 610
            aload 5 /* curr */
            arraylength
            istore 6 /* currLen */
        start local 6 // int currLen
        18: .line 611
            aload 1 /* w */
            aload 5 /* curr */
            iconst_0
            iload 6 /* currLen */
            invokevirtual java.io.Writer.write:([CII)V
        19: .line 612
            iload 2 /* total */
            iload 6 /* currLen */
            iadd
            istore 2 /* total */
        end local 6 // int currLen
        end local 5 // char[] curr
        20: .line 608
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 3 /* i */
            iload 4 /* end */
            if_icmplt 16
        end local 4 // int end
        end local 3 // int i
        22: .line 615
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 3 /* len */
        start local 3 // int len
        23: .line 616
            iload 3 /* len */
            ifle 26
        24: .line 617
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 3 /* len */
            invokevirtual java.io.Writer.write:([CII)V
        25: .line 618
            iload 2 /* total */
            iload 3 /* len */
            iadd
            istore 2 /* total */
        26: .line 620
      StackMap locals: int
      StackMap stack:
            iload 2 /* total */
            ireturn
        end local 3 // int len
        end local 2 // int total
        end local 1 // java.io.Writer w
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   27     0     this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   27     1        w  Ljava/io/Writer;
            8   11     2      len  I
           12   27     2    total  I
           14   22     3        i  I
           15   22     4      end  I
           17   20     5     curr  [C
           18   20     6  currLen  I
           23   27     3      len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      w     

  public void ensureNotShared();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 634
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 635
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 637
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public void append(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // char c
         0: .line 641
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 642
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 645
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 647
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         5: .line 648
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            aload 2 /* curr */
            arraylength
            if_icmplt 8
         6: .line 649
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
         7: .line 650
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
         8: .line 652
      StackMap locals: char[]
      StackMap stack:
            aload 2 /* curr */
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 1 /* c */
            castore
         9: .line 653
            return
        end local 2 // char[] curr
        end local 1 // char c
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   10     1     c  C
            5   10     2  curr  [C
    MethodParameters:
      Name  Flags
      c     

  public void append(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // char[] c
        start local 2 // int start
        start local 3 // int len
         0: .line 658
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 659
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 661
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 662
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 665
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 666
            aload 4 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            isub
            istore 5 /* max */
        start local 5 // int max
         6: .line 668
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 669
            aload 1 /* c */
            iload 2 /* start */
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 670
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         9: .line 671
            return
        10: .line 674
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 675
            aload 1 /* c */
            iload 2 /* start */
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 5 /* max */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 676
            iload 2 /* start */
            iload 5 /* max */
            iadd
            istore 2 /* start */
        13: .line 677
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        14: .line 682
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 683
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            iload 3 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* amount */
        start local 6 // int amount
        16: .line 684
            aload 1 /* c */
            iload 2 /* start */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 6 /* amount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        17: .line 685
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 6 /* amount */
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        18: .line 686
            iload 2 /* start */
            iload 6 /* amount */
            iadd
            istore 2 /* start */
        19: .line 687
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 688
            iload 3 /* len */
        21: .line 681
            ifgt 14
        22: .line 689
            return
        end local 5 // int max
        end local 4 // char[] curr
        end local 3 // int len
        end local 2 // int start
        end local 1 // char[] c
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   23     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   23     1       c  [C
            0   23     2   start  I
            0   23     3     len  I
            5   23     4    curr  [C
            6   23     5     max  I
           16   20     6  amount  I
    MethodParameters:
       Name  Flags
      c      
      start  
      len    

  public void append(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // java.lang.String str
        start local 2 // int offset
        start local 3 // int len
         0: .line 694
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 695
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 697
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 698
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 701
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 702
            aload 4 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            isub
            istore 5 /* max */
        start local 5 // int max
         6: .line 703
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 704
            aload 1 /* str */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 3 /* len */
            iadd
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         8: .line 705
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         9: .line 706
            return
        10: .line 709
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 710
            aload 1 /* str */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 5 /* max */
            iadd
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokevirtual java.lang.String.getChars:(II[CI)V
        12: .line 711
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        13: .line 712
            iload 2 /* offset */
            iload 5 /* max */
            iadd
            istore 2 /* offset */
        14: .line 717
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 718
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            iload 3 /* len */
            invokestatic java.lang.Math.min:(II)I
            istore 6 /* amount */
        start local 6 // int amount
        16: .line 719
            aload 1 /* str */
            iload 2 /* offset */
            iload 2 /* offset */
            iload 6 /* amount */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
        17: .line 720
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            iload 6 /* amount */
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        18: .line 721
            iload 2 /* offset */
            iload 6 /* amount */
            iadd
            istore 2 /* offset */
        19: .line 722
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 723
            iload 3 /* len */
        21: .line 716
            ifgt 14
        22: .line 724
            return
        end local 5 // int max
        end local 4 // char[] curr
        end local 3 // int len
        end local 2 // int offset
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   23     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   23     1     str  Ljava/lang/String;
            0   23     2  offset  I
            0   23     3     len  I
            5   23     4    curr  [C
            6   23     5     max  I
           16   20     6  amount  I
    MethodParameters:
        Name  Flags
      str     
      offset  
      len     

  public char[] getCurrentSegment();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 738
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 3
         1: .line 739
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 740
            goto 9
         3: .line 741
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         4: .line 742
            aload 1 /* curr */
            ifnonnull 7
         5: .line 743
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         6: .line 744
            goto 9
      StackMap locals: char[]
      StackMap stack:
         7: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            aload 1 /* curr */
            arraylength
            if_icmplt 9
         8: .line 746
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        end local 1 // char[] curr
         9: .line 749
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            4    9     1  curr  [C

  public char[] emptyAndGetCurrentSegment();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 755
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 756
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 757
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 759
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 760
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 761
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 764
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 765
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 767
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         9: .line 768
            aload 1 /* curr */
            ifnonnull 11
        10: .line 769
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            dup
            astore 1 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        11: .line 771
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* curr */
            areturn
        end local 1 // char[] curr
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            9   12     1  curr  [C

  public int getCurrentSegmentSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 774
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            ireturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  public void setCurrentLength(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int len
         0: .line 775
            aload 0 /* this */
            iload 1 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            return
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    1     1   len  I
    MethodParameters:
      Name  Flags
      len   

  public java.lang.String setCurrentAndReturn(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int len
         0: .line 790
            aload 0 /* this */
            iload 1 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         1: .line 792
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            ifle 3
         2: .line 793
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            areturn
         3: .line 796
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
         4: .line 797
            iload 2 /* currLen */
            ifne 5
            ldc ""
            goto 6
      StackMap locals: int
      StackMap stack:
         5: new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 2 /* currLen */
            invokespecial java.lang.String.<init>:([CII)V
      StackMap locals:
      StackMap stack: java.lang.String
         6: astore 3 /* str */
        start local 3 // java.lang.String str
         7: .line 798
            aload 0 /* this */
            aload 3 /* str */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         8: .line 799
            aload 3 /* str */
            areturn
        end local 3 // java.lang.String str
        end local 2 // int currLen
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    9     1      len  I
            4    9     2  currLen  I
            7    9     3      str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      len   

  public char[] finishCurrentSegment();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 803
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 804
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
         2: .line 806
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         3: .line 807
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         4: .line 808
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            istore 1 /* oldLen */
        start local 1 // int oldLen
         5: .line 809
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            iload 1 /* oldLen */
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
         6: .line 810
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 813
            iload 1 /* oldLen */
            iload 1 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 2 /* newLen */
        start local 2 // int newLen
         8: .line 814
            iload 2 /* newLen */
            sipush 500
            if_icmpge 11
         9: .line 815
            sipush 500
            istore 2 /* newLen */
        10: .line 816
            goto 13
      StackMap locals: int int
      StackMap stack:
        11: iload 2 /* newLen */
            ldc 65536
            if_icmple 13
        12: .line 817
            ldc 65536
            istore 2 /* newLen */
        13: .line 819
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* newLen */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.carr:(I)[C
            astore 3 /* curr */
        start local 3 // char[] curr
        14: .line 820
            aload 0 /* this */
            aload 3 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        15: .line 821
            aload 3 /* curr */
            areturn
        end local 3 // char[] curr
        end local 2 // int newLen
        end local 1 // int oldLen
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            5   16     1  oldLen  I
            8   16     2  newLen  I
           14   16     3    curr  [C

  public char[] expandCurrentSegment();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 834
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         1: .line 836
            aload 1 /* curr */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 837
            iload 2 /* len */
            iload 2 /* len */
            iconst_1
            ishr
            iadd
            istore 3 /* newLen */
        start local 3 // int newLen
         3: .line 839
            iload 3 /* newLen */
            ldc 65536
            if_icmple 5
         4: .line 840
            iload 2 /* len */
            iload 2 /* len */
            iconst_2
            ishr
            iadd
            istore 3 /* newLen */
         5: .line 842
      StackMap locals: char[] int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* curr */
            iload 3 /* newLen */
            invokestatic java.util.Arrays.copyOf:([CI)[C
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            areturn
        end local 3 // int newLen
        end local 2 // int len
        end local 1 // char[] curr
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            1    6     1    curr  [C
            2    6     2     len  I
            3    6     3  newLen  I

  public char[] expandCurrentSegment(int);
    descriptor: (I)[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int minSize
         0: .line 857
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         1: .line 858
            aload 2 /* curr */
            arraylength
            iload 1 /* minSize */
            if_icmplt 2
            aload 2 /* curr */
            areturn
         2: .line 859
      StackMap locals: char[]
      StackMap stack:
            aload 0 /* this */
            aload 2 /* curr */
            iload 1 /* minSize */
            invokestatic java.util.Arrays.copyOf:([CI)[C
            dup
            astore 2 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         3: .line 860
            aload 2 /* curr */
            areturn
        end local 2 // char[] curr
        end local 1 // int minSize
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    4     1  minSize  I
            1    4     2     curr  [C
    MethodParameters:
         Name  Flags
      minSize  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 874
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;

  private void unshare(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int needExtra
         0: .line 888
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* sharedLen */
        start local 2 // int sharedLen
         1: .line 889
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 890
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            astore 3 /* inputBuf */
        start local 3 // char[] inputBuf
         3: .line 891
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 892
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            istore 4 /* start */
        start local 4 // int start
         5: .line 893
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         6: .line 896
            iload 2 /* sharedLen */
            iload 1 /* needExtra */
            iadd
            istore 5 /* needed */
        start local 5 // int needed
         7: .line 897
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 8
            iload 5 /* needed */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            if_icmple 9
         8: .line 898
      StackMap locals: com.fasterxml.jackson.core.util.TextBuffer int int char[] int int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 5 /* needed */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.buf:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         9: .line 900
      StackMap locals:
      StackMap stack:
            iload 2 /* sharedLen */
            ifle 11
        10: .line 901
            aload 3 /* inputBuf */
            iload 4 /* start */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 2 /* sharedLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 903
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
        12: .line 904
            aload 0 /* this */
            iload 2 /* sharedLen */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        13: .line 905
            return
        end local 5 // int needed
        end local 4 // int start
        end local 3 // char[] inputBuf
        end local 2 // int sharedLen
        end local 1 // int needExtra
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   14     1  needExtra  I
            1   14     2  sharedLen  I
            3   14     3   inputBuf  [C
            5   14     4      start  I
            7   14     5     needed  I
    MethodParameters:
           Name  Flags
      needExtra  

  private void expand(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int minNewSegmentSize
         0: .line 911
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 912
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
         2: .line 914
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         3: .line 915
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         4: .line 916
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            aload 2 /* curr */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         5: .line 917
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            aload 2 /* curr */
            arraylength
            iadd
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
         6: .line 918
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 919
            aload 2 /* curr */
            arraylength
            istore 3 /* oldLen */
        start local 3 // int oldLen
         8: .line 922
            iload 3 /* oldLen */
            iload 3 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 4 /* newLen */
        start local 4 // int newLen
         9: .line 923
            iload 4 /* newLen */
            sipush 500
            if_icmpge 12
        10: .line 924
            sipush 500
            istore 4 /* newLen */
        11: .line 925
            goto 14
      StackMap locals: char[] int int
      StackMap stack:
        12: iload 4 /* newLen */
            ldc 65536
            if_icmple 14
        13: .line 926
            ldc 65536
            istore 4 /* newLen */
        14: .line 928
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* newLen */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.carr:(I)[C
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        15: .line 929
            return
        end local 4 // int newLen
        end local 3 // int oldLen
        end local 2 // char[] curr
        end local 1 // int minNewSegmentSize
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   16     0               this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0   16     1  minNewSegmentSize  I
            3   16     2               curr  [C
            8   16     3             oldLen  I
            9   16     4             newLen  I
    MethodParameters:
                   Name  Flags
      minNewSegmentSize  

  private char[] resultArray();
    descriptor: ()[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
         0: .line 933
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 2
         1: .line 934
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         2: .line 937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 10
         3: .line 938
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 1 /* len */
        start local 1 // int len
         4: .line 939
            iload 1 /* len */
            iconst_1
            if_icmpge 6
         5: .line 940
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
         6: .line 942
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            istore 2 /* start */
        start local 2 // int start
         7: .line 943
            iload 2 /* start */
            ifne 9
         8: .line 944
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            iload 1 /* len */
            invokestatic java.util.Arrays.copyOf:([CI)[C
            areturn
         9: .line 946
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            iload 2 /* start */
            iload 2 /* start */
            iload 1 /* len */
            iadd
            invokestatic java.util.Arrays.copyOfRange:([CII)[C
            areturn
        end local 2 // int start
        end local 1 // int len
        10: .line 949
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.size:()I
            istore 1 /* size */
        start local 1 // int size
        11: .line 950
            iload 1 /* size */
            iconst_1
            if_icmpge 13
        12: .line 951
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
        13: .line 953
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 2 /* offset */
        start local 2 // int offset
        14: .line 954
            aload 0 /* this */
            iload 1 /* size */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.carr:(I)[C
            astore 3 /* result */
        start local 3 // char[] result
        15: .line 955
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        16: .line 956
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        17: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 5 /* len */
        start local 5 // int len
        18: goto 24
        19: .line 957
      StackMap locals: com.fasterxml.jackson.core.util.TextBuffer int int char[] int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 6 /* curr */
        start local 6 // char[] curr
        20: .line 958
            aload 6 /* curr */
            arraylength
            istore 7 /* currLen */
        start local 7 // int currLen
        21: .line 959
            aload 6 /* curr */
            iconst_0
            aload 3 /* result */
            iload 2 /* offset */
            iload 7 /* currLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        22: .line 960
            iload 2 /* offset */
            iload 7 /* currLen */
            iadd
            istore 2 /* offset */
        end local 7 // int currLen
        end local 6 // char[] curr
        23: .line 956
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 19
        end local 5 // int len
        end local 4 // int i
        25: .line 963
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            aload 3 /* result */
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        26: .line 964
            aload 3 /* result */
            areturn
        end local 3 // char[] result
        end local 2 // int offset
        end local 1 // int size
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   27     0     this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            4   10     1      len  I
            7   10     2    start  I
           11   27     1     size  I
           14   27     2   offset  I
           15   27     3   result  [C
           17   25     4        i  I
           18   25     5      len  I
           20   23     6     curr  [C
           21   23     7  currLen  I

  private char[] carr(int);
    descriptor: (I)[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.util.TextBuffer this
        start local 1 // int len
         0: .line 967
            iload 1 /* len */
            newarray 5
            areturn
        end local 1 // int len
        end local 0 // com.fasterxml.jackson.core.util.TextBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/util/TextBuffer;
            0    1     1   len  I
    MethodParameters:
      Name  Flags
      len   
}
SourceFile: "TextBuffer.java"