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 158
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnonnull 3
         1: .line 159
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.resetWithEmpty:()V
         2: .line 160
            goto 8
         3: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 8
         4: .line 163
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.resetWithEmpty:()V
         5: .line 165
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* buf */
        start local 1 // char[] buf
         6: .line 166
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         7: .line 167
            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
         8: .line 170
      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;
            6    8     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 178
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 179
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 180
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 182
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 183
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 184
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 187
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 188
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 190
      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 197
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 198
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 200
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 201
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 203
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         5: .line 204
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         6: .line 205
            goto 9
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 9
         8: .line 206
            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 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 1 /* ch */
            castore
        10: .line 209
            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 210
            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 221
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         1: .line 222
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         2: .line 225
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         3: .line 226
            aload 0 /* this */
            iload 2 /* start */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         4: .line 227
            aload 0 /* this */
            iload 3 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         5: .line 230
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 231
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 233
      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 237
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 238
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 239
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 241
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 242
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 245
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 246
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 247
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 248
            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 250
      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 251
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.append:([CII)V
        12: .line 252
            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 259
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 260
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 261
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 263
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 264
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 266
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 267
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 268
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 269
            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 271
      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 272
            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 273
            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 277
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 278
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 279
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 281
            aload 0 /* this */
            aload 1 /* value */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 282
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 284
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 285
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         8: .line 289
            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 295
            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 304
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnull 2
         1: .line 305
            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 307
      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 312
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         1: .line 320
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 321
            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 322
            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 334
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 335
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            ireturn
         2: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         3: .line 338
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         4: .line 340
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         5: .line 341
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 344
      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 352
            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 362
            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 364
      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 365
      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 376
            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 377
      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 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 4
         3: .line 379
            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 382
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifne 8
         5: .line 383
            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 386
      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 397
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnonnull 27
         1: .line 399
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         2: .line 400
            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 401
            goto 27
         4: .line 403
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 9
         5: .line 404
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            if_icmpge 7
         6: .line 405
            aload 0 /* this */
            ldc ""
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            areturn
         7: .line 407
      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 408
            goto 27
         9: .line 410
      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 411
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
        11: .line 413
            iload 1 /* segLen */
            ifne 16
        12: .line 414
            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 415
            goto 27
        16: .line 416
      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 418
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        18: .line 419
            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 420
      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 421
            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 419
            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 425
      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 426
            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 431
      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 435
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 436
            aload 1 /* result */
            ifnonnull 3
         2: .line 437
            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 439
      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 449
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
         1: .line 450
            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 453
      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 454
            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 457
      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 458
            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 461
      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 469
            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 481
            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 482
            iload 1 /* neg */
            ifeq 3
         2: .line 483
            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 485
      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 487
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 488
            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 490
      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 502
            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 503
            iload 1 /* neg */
            ifeq 3
         2: .line 504
            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 506
      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 508
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 509
            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 511
      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 519
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 3
         1: .line 520
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokevirtual java.io.Writer.write:([C)V
         2: .line 521
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         3: .line 523
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         4: .line 524
            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 525
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 11
         7: .line 529
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* len */
        start local 2 // int len
         8: .line 530
            iload 2 /* len */
            ifle 10
         9: .line 531
            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 533
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            ireturn
        end local 2 // int len
        11: .line 536
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* total */
        start local 2 // int total
        12: .line 537
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 22
        13: .line 538
            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 539
      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 540
            aload 5 /* curr */
            arraylength
            istore 6 /* currLen */
        start local 6 // int currLen
        18: .line 541
            aload 1 /* w */
            aload 5 /* curr */
            iconst_0
            iload 6 /* currLen */
            invokevirtual java.io.Writer.write:([CII)V
        19: .line 542
            iload 2 /* total */
            iload 6 /* currLen */
            iadd
            istore 2 /* total */
        end local 6 // int currLen
        end local 5 // char[] curr
        20: .line 538
            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 545
      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 546
            iload 3 /* len */
            ifle 26
        24: .line 547
            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 548
            iload 2 /* total */
            iload 3 /* len */
            iadd
            istore 2 /* total */
        26: .line 550
      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 564
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 565
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 567
      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 571
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 572
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 574
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 575
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 577
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         5: .line 578
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            aload 2 /* curr */
            arraylength
            if_icmplt 8
         6: .line 579
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
         7: .line 580
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
         8: .line 582
      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 583
            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 588
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 589
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 591
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 592
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 595
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 596
            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 598
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 599
            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 600
            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 601
            return
        10: .line 604
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 605
            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 606
            iload 2 /* start */
            iload 5 /* max */
            iadd
            istore 2 /* start */
        13: .line 607
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        14: .line 612
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 613
            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 614
            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 615
            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 616
            iload 2 /* start */
            iload 6 /* amount */
            iadd
            istore 2 /* start */
        19: .line 617
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 618
            iload 3 /* len */
        21: .line 611
            ifgt 14
        22: .line 619
            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 624
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 625
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 628
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 631
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 632
            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 633
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 634
            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 635
            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 636
            return
        10: .line 639
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 640
            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 641
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        13: .line 642
            iload 2 /* offset */
            iload 5 /* max */
            iadd
            istore 2 /* offset */
        14: .line 647
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 648
            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 649
            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 650
            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 651
            iload 2 /* offset */
            iload 6 /* amount */
            iadd
            istore 2 /* offset */
        19: .line 652
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 653
            iload 3 /* len */
        21: .line 646
            ifgt 14
        22: .line 654
            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 668
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 3
         1: .line 669
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 670
            goto 9
         3: .line 671
      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 672
            aload 1 /* curr */
            ifnonnull 7
         5: .line 673
            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 674
            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 676
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        end local 1 // char[] curr
         9: .line 679
      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 685
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 686
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 687
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 689
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 690
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 691
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 694
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 695
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 697
      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 698
            aload 1 /* curr */
            ifnonnull 11
        10: .line 699
            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 701
      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 704
            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 705
            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 711
            aload 0 /* this */
            iload 1 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         1: .line 713
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            ifle 3
         2: .line 714
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            areturn
         3: .line 717
      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 718
            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 719
            aload 0 /* this */
            aload 3 /* str */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         8: .line 720
            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 724
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 725
            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 727
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         3: .line 728
            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 729
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            istore 1 /* oldLen */
        start local 1 // int oldLen
         5: .line 730
            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 731
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 734
            iload 1 /* oldLen */
            iload 1 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 2 /* newLen */
        start local 2 // int newLen
         8: .line 735
            iload 2 /* newLen */
            sipush 500
            if_icmpge 11
         9: .line 736
            sipush 500
            istore 2 /* newLen */
        10: .line 737
            goto 13
      StackMap locals: int int
      StackMap stack:
        11: iload 2 /* newLen */
            ldc 65536
            if_icmple 13
        12: .line 738
            ldc 65536
            istore 2 /* newLen */
        13: .line 740
      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 741
            aload 0 /* this */
            aload 3 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        15: .line 742
            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 752
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         1: .line 754
            aload 1 /* curr */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 755
            iload 2 /* len */
            iload 2 /* len */
            iconst_1
            ishr
            iadd
            istore 3 /* newLen */
        start local 3 // int newLen
         3: .line 757
            iload 3 /* newLen */
            ldc 65536
            if_icmple 5
         4: .line 758
            iload 2 /* len */
            iload 2 /* len */
            iconst_2
            ishr
            iadd
            istore 3 /* newLen */
         5: .line 760
      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 773
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         1: .line 774
            aload 2 /* curr */
            arraylength
            iload 1 /* minSize */
            if_icmplt 2
            aload 2 /* curr */
            areturn
         2: .line 775
      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 776
            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 790
            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 804
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* sharedLen */
        start local 2 // int sharedLen
         1: .line 805
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 806
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            astore 3 /* inputBuf */
        start local 3 // char[] inputBuf
         3: .line 807
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 808
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            istore 4 /* start */
        start local 4 // int start
         5: .line 809
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         6: .line 812
            iload 2 /* sharedLen */
            iload 1 /* needExtra */
            iadd
            istore 5 /* needed */
        start local 5 // int needed
         7: .line 813
            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 814
      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 816
      StackMap locals:
      StackMap stack:
            iload 2 /* sharedLen */
            ifle 11
        10: .line 817
            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 819
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
        12: .line 820
            aload 0 /* this */
            iload 2 /* sharedLen */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        13: .line 821
            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 830
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 831
            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 833
      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 834
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         4: .line 835
            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 836
            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 837
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 838
            aload 2 /* curr */
            arraylength
            istore 3 /* oldLen */
        start local 3 // int oldLen
         8: .line 841
            iload 3 /* oldLen */
            iload 3 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 4 /* newLen */
        start local 4 // int newLen
         9: .line 842
            iload 4 /* newLen */
            sipush 500
            if_icmpge 12
        10: .line 843
            sipush 500
            istore 4 /* newLen */
        11: .line 844
            goto 14
      StackMap locals: char[] int int
      StackMap stack:
        12: iload 4 /* newLen */
            ldc 65536
            if_icmple 14
        13: .line 845
            ldc 65536
            istore 4 /* newLen */
        14: .line 847
      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 848
            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 852
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 2
         1: .line 853
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         2: .line 856
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 10
         3: .line 857
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 1 /* len */
        start local 1 // int len
         4: .line 858
            iload 1 /* len */
            iconst_1
            if_icmpge 6
         5: .line 859
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
         6: .line 861
      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 862
            iload 2 /* start */
            ifne 9
         8: .line 863
            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 865
      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 868
      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 869
            iload 1 /* size */
            iconst_1
            if_icmpge 13
        12: .line 870
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
        13: .line 872
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 2 /* offset */
        start local 2 // int offset
        14: .line 873
            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 874
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        16: .line 875
            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 876
      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 877
            aload 6 /* curr */
            arraylength
            istore 7 /* currLen */
        start local 7 // int currLen
        21: .line 878
            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 879
            iload 2 /* offset */
            iload 7 /* currLen */
            iadd
            istore 2 /* offset */
        end local 7 // int currLen
        end local 6 // char[] curr
        23: .line 875
            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 882
      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 883
            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 886
            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"