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 130
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 131
            aload 0 /* this */
            aload 1 /* allocator */
            putfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
         2: .line 132
            aload 0 /* this */
            aload 2 /* initialSegment */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         3: .line 133
            aload 0 /* this */
            aload 2 /* initialSegment */
            arraylength
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         4: .line 134
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         5: .line 135
            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 144
            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 162
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 163
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 164
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 166
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 169
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 171
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 172
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 176
      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 177
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 12
         9: .line 179
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* buf */
        start local 1 // char[] buf
        10: .line 180
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        11: .line 181
            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 184
      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 192
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 193
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 194
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 196
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 197
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 198
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 201
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 202
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 204
      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 211
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 212
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 214
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 215
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 217
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         5: .line 218
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         6: .line 219
            goto 9
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 9
         8: .line 220
            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 222
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 1 /* ch */
            castore
        10: .line 223
            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 224
            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 start
        start local 3 // int len
         0: .line 235
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         1: .line 236
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         2: .line 239
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         3: .line 240
            aload 0 /* this */
            iload 2 /* start */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         4: .line 241
            aload 0 /* this */
            iload 3 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         5: .line 244
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 245
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 247
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int start
        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  start  I
            0    8     3    len  I
    MethodParameters:
       Name  Flags
      buf    
      start  
      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 start
        start local 3 // int len
         0: .line 251
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 252
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 253
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 255
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 256
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 259
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 260
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 261
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 262
            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 264
      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 265
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.append:([CII)V
        12: .line 266
            return
        end local 3 // int len
        end local 2 // int start
        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  start  I
            0   13     3    len  I
    MethodParameters:
       Name  Flags
      buf    
      start  
      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 273
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 274
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 275
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 277
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 278
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 280
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 281
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 282
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 283
            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 285
      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 286
            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 287
            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 291
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 292
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 293
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 295
            aload 0 /* this */
            aload 1 /* value */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 296
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 298
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 299
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 301
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         8: .line 303
            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 309
            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 318
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnull 2
         1: .line 319
            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 321
      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 326
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         1: .line 334
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 335
            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 336
            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 348
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 349
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            ireturn
         2: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         3: .line 352
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         4: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         5: .line 355
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 358
      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 366
            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 376
            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 378
      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 379
      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 390
            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 391
      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 392
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 4
         3: .line 393
            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 396
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifne 8
         5: .line 397
            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 400
      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 411
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnonnull 27
         1: .line 413
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         2: .line 414
            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 415
            goto 27
         4: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 9
         5: .line 418
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            if_icmpge 7
         6: .line 419
            aload 0 /* this */
            ldc ""
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            areturn
         7: .line 421
      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 422
            goto 27
         9: .line 424
      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 425
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
        11: .line 427
            iload 1 /* segLen */
            ifne 16
        12: .line 428
            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 429
            goto 27
        16: .line 430
      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 432
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        18: .line 433
            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 434
      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 435
            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 433
            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 439
      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 440
            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 446
      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 450
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 451
            aload 1 /* result */
            ifnonnull 3
         2: .line 452
            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 454
      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 464
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
         1: .line 465
            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 468
      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 469
            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 472
      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 473
            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 476
      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 484
            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 496
            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 497
            iload 1 /* neg */
            ifeq 3
         2: .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
            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 500
      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 502
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 503
            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 505
      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 517
            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 518
            iload 1 /* neg */
            ifeq 3
         2: .line 519
            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 521
      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 523
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 524
            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 526
      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 534
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 3
         1: .line 535
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokevirtual java.io.Writer.write:([C)V
         2: .line 536
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         3: .line 538
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         4: .line 539
            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 540
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 11
         7: .line 544
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* len */
        start local 2 // int len
         8: .line 545
            iload 2 /* len */
            ifle 10
         9: .line 546
            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 548
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            ireturn
        end local 2 // int len
        11: .line 551
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* total */
        start local 2 // int total
        12: .line 552
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 22
        13: .line 553
            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 554
      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 555
            aload 5 /* curr */
            arraylength
            istore 6 /* currLen */
        start local 6 // int currLen
        18: .line 556
            aload 1 /* w */
            aload 5 /* curr */
            iconst_0
            iload 6 /* currLen */
            invokevirtual java.io.Writer.write:([CII)V
        19: .line 557
            iload 2 /* total */
            iload 6 /* currLen */
            iadd
            istore 2 /* total */
        end local 6 // int currLen
        end local 5 // char[] curr
        20: .line 553
            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 560
      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 561
            iload 3 /* len */
            ifle 26
        24: .line 562
            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 563
            iload 2 /* total */
            iload 3 /* len */
            iadd
            istore 2 /* total */
        26: .line 565
      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 579
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 580
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 582
      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 586
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 587
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 590
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 592
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         5: .line 593
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            aload 2 /* curr */
            arraylength
            if_icmplt 8
         6: .line 594
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
         7: .line 595
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
         8: .line 597
      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 598
            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 603
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 604
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 606
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 607
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 610
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 611
            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 613
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 614
            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 615
            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 616
            return
        10: .line 619
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 620
            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 621
            iload 2 /* start */
            iload 5 /* max */
            iadd
            istore 2 /* start */
        13: .line 622
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        14: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 628
            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 629
            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 630
            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 631
            iload 2 /* start */
            iload 6 /* amount */
            iadd
            istore 2 /* start */
        19: .line 632
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 633
            iload 3 /* len */
        21: .line 626
            ifgt 14
        22: .line 634
            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 639
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 640
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 642
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 643
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 646
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 647
            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 648
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 649
            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 650
            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 651
            return
        10: .line 654
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 655
            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 656
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        13: .line 657
            iload 2 /* offset */
            iload 5 /* max */
            iadd
            istore 2 /* offset */
        14: .line 662
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 663
            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 664
            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 665
            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 666
            iload 2 /* offset */
            iload 6 /* amount */
            iadd
            istore 2 /* offset */
        19: .line 667
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 668
            iload 3 /* len */
        21: .line 661
            ifgt 14
        22: .line 669
            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 683
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 3
         1: .line 684
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 685
            goto 9
         3: .line 686
      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 687
            aload 1 /* curr */
            ifnonnull 7
         5: .line 688
            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 689
            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 691
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        end local 1 // char[] curr
         9: .line 694
      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 700
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 701
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 702
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 704
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 705
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 706
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 709
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 710
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 712
      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 713
            aload 1 /* curr */
            ifnonnull 11
        10: .line 714
            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 716
      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 719
            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 720
            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 726
            aload 0 /* this */
            iload 1 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         1: .line 728
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            ifle 3
         2: .line 729
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            areturn
         3: .line 732
      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 733
            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 734
            aload 0 /* this */
            aload 3 /* str */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         8: .line 735
            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 739
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 740
            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 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         3: .line 743
            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 744
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            istore 1 /* oldLen */
        start local 1 // int oldLen
         5: .line 745
            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 746
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 749
            iload 1 /* oldLen */
            iload 1 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 2 /* newLen */
        start local 2 // int newLen
         8: .line 750
            iload 2 /* newLen */
            sipush 500
            if_icmpge 11
         9: .line 751
            sipush 500
            istore 2 /* newLen */
        10: .line 752
            goto 13
      StackMap locals: int int
      StackMap stack:
        11: iload 2 /* newLen */
            ldc 65536
            if_icmple 13
        12: .line 753
            ldc 65536
            istore 2 /* newLen */
        13: .line 755
      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 756
            aload 0 /* this */
            aload 3 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        15: .line 757
            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 767
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         1: .line 769
            aload 1 /* curr */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 770
            iload 2 /* len */
            iload 2 /* len */
            iconst_1
            ishr
            iadd
            istore 3 /* newLen */
        start local 3 // int newLen
         3: .line 772
            iload 3 /* newLen */
            ldc 65536
            if_icmple 5
         4: .line 773
            iload 2 /* len */
            iload 2 /* len */
            iconst_2
            ishr
            iadd
            istore 3 /* newLen */
         5: .line 775
      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 788
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         1: .line 789
            aload 2 /* curr */
            arraylength
            iload 1 /* minSize */
            if_icmplt 2
            aload 2 /* curr */
            areturn
         2: .line 790
      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 791
            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 805
            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 819
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* sharedLen */
        start local 2 // int sharedLen
         1: .line 820
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 821
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            astore 3 /* inputBuf */
        start local 3 // char[] inputBuf
         3: .line 822
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 823
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            istore 4 /* start */
        start local 4 // int start
         5: .line 824
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         6: .line 827
            iload 2 /* sharedLen */
            iload 1 /* needExtra */
            iadd
            istore 5 /* needed */
        start local 5 // int needed
         7: .line 828
            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 829
      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 831
      StackMap locals:
      StackMap stack:
            iload 2 /* sharedLen */
            ifle 11
        10: .line 832
            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 834
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
        12: .line 835
            aload 0 /* this */
            iload 2 /* sharedLen */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        13: .line 836
            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 845
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 846
            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 848
      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 849
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         4: .line 850
            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 851
            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 852
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 853
            aload 2 /* curr */
            arraylength
            istore 3 /* oldLen */
        start local 3 // int oldLen
         8: .line 856
            iload 3 /* oldLen */
            iload 3 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 4 /* newLen */
        start local 4 // int newLen
         9: .line 857
            iload 4 /* newLen */
            sipush 500
            if_icmpge 12
        10: .line 858
            sipush 500
            istore 4 /* newLen */
        11: .line 859
            goto 14
      StackMap locals: char[] int int
      StackMap stack:
        12: iload 4 /* newLen */
            ldc 65536
            if_icmple 14
        13: .line 860
            ldc 65536
            istore 4 /* newLen */
        14: .line 862
      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 863
            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 867
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 2
         1: .line 868
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         2: .line 871
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 10
         3: .line 872
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 1 /* len */
        start local 1 // int len
         4: .line 873
            iload 1 /* len */
            iconst_1
            if_icmpge 6
         5: .line 874
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
         6: .line 876
      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 877
            iload 2 /* start */
            ifne 9
         8: .line 878
            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 880
      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 883
      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 884
            iload 1 /* size */
            iconst_1
            if_icmpge 13
        12: .line 885
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
        13: .line 887
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 2 /* offset */
        start local 2 // int offset
        14: .line 888
            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 889
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        16: .line 890
            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 891
      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 892
            aload 6 /* curr */
            arraylength
            istore 7 /* currLen */
        start local 7 // int currLen
        21: .line 893
            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 894
            iload 2 /* offset */
            iload 7 /* currLen */
            iadd
            istore 2 /* offset */
        end local 7 // int currLen
        end local 6 // char[] curr
        23: .line 890
            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 897
      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 898
            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 901
            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"