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: 1000

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

  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 40
            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 121
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 122
            aload 0 /* this */
            aload 1 /* allocator */
            putfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
         2: .line 123
            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  

  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 136
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnonnull 3
         1: .line 137
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.resetWithEmpty:()V
         2: .line 138
            goto 8
         3: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnull 8
         4: .line 141
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.resetWithEmpty:()V
         5: .line 143
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* buf */
        start local 1 // char[] buf
         6: .line 144
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
         7: .line 145
            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 148
      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 156
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 157
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 158
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 160
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 161
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 162
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 165
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 166
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 168
      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 175
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 176
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 178
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 179
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 181
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         5: .line 182
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         6: .line 183
            goto 9
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 9
         8: .line 184
            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 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            iconst_0
            iload 1 /* ch */
            castore
        10: .line 187
            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 188
            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 199
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         1: .line 200
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         2: .line 203
            aload 0 /* this */
            aload 1 /* buf */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         3: .line 204
            aload 0 /* this */
            iload 2 /* start */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         4: .line 205
            aload 0 /* this */
            iload 3 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         5: .line 208
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 209
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 211
      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 215
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 216
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 217
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 219
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 220
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 223
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 224
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 225
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 226
            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 228
      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 229
            aload 0 /* this */
            aload 1 /* buf */
            iload 2 /* start */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.append:([CII)V
        12: .line 230
            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 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 244
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         6: .line 245
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 246
            goto 10
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            ifnonnull 10
         9: .line 247
            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 249
      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 250
            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 251
            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 255
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         1: .line 256
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         2: .line 257
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 259
            aload 0 /* this */
            aload 1 /* value */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         4: .line 260
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         5: .line 262
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 7
         6: .line 263
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         7: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         8: .line 267
            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 273
            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 282
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._allocator:Lcom/fasterxml/jackson/core/util/BufferRecycler;
            ifnull 2
         1: .line 283
            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 285
      StackMap locals:
      StackMap stack:
            iload 1 /* needed */
            sipush 1000
            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 290
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         1: .line 298
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 299
            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 300
            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 312
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 313
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            ireturn
         2: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         3: .line 316
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         4: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         5: .line 319
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 322
      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 330
            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 340
            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 342
      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 343
      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 354
            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 355
      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 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 4
         3: .line 357
            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 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifne 8
         5: .line 361
            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 364
      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 375
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnonnull 27
         1: .line 377
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 4
         2: .line 378
            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 379
            goto 27
         4: .line 381
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 9
         5: .line 382
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            iconst_1
            if_icmpge 7
         6: .line 383
            aload 0 /* this */
            ldc ""
            dup_x1
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            areturn
         7: .line 385
      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 386
            goto 27
         9: .line 388
      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 389
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
        11: .line 391
            iload 1 /* segLen */
            ifne 16
        12: .line 392
            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 393
            goto 27
        16: .line 394
      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 396
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        18: .line 397
            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 398
      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 399
            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 397
            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 403
      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 404
            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 409
      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 413
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 414
            aload 1 /* result */
            ifnonnull 3
         2: .line 415
            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 417
      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 427
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 2
         1: .line 428
            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 431
      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 432
            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 435
      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 436
            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 439
      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 447
            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 459
            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 460
            iload 1 /* neg */
            ifeq 3
         2: .line 461
            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 463
      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 465
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 466
            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 468
      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 480
            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 481
            iload 1 /* neg */
            ifeq 3
         2: .line 482
            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 484
      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 486
      StackMap locals:
      StackMap stack:
            iload 1 /* neg */
            ifeq 6
         5: .line 487
            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 489
      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 497
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            ifnull 3
         1: .line 498
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            invokevirtual java.io.Writer.write:([C)V
         2: .line 499
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
            arraylength
            ireturn
         3: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 6
         4: .line 502
            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 503
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 11
         7: .line 507
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* len */
        start local 2 // int len
         8: .line 508
            iload 2 /* len */
            ifle 10
         9: .line 509
            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 511
      StackMap locals: int
      StackMap stack:
            iload 2 /* len */
            ireturn
        end local 2 // int len
        11: .line 514
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* total */
        start local 2 // int total
        12: .line 515
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 22
        13: .line 516
            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 517
      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 518
            aload 5 /* curr */
            arraylength
            istore 6 /* currLen */
        start local 6 // int currLen
        18: .line 519
            aload 1 /* w */
            aload 5 /* curr */
            iconst_0
            iload 6 /* currLen */
            invokevirtual java.io.Writer.write:([CII)V
        19: .line 520
            iload 2 /* total */
            iload 6 /* currLen */
            iadd
            istore 2 /* total */
        end local 6 // int currLen
        end local 5 // char[] curr
        20: .line 516
            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 523
      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 524
            iload 3 /* len */
            ifle 26
        24: .line 525
            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 526
            iload 2 /* total */
            iload 3 /* len */
            iadd
            istore 2 /* total */
        26: .line 528
      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 542
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 543
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 545
      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 549
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 550
            aload 0 /* this */
            bipush 16
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 553
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 555
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         5: .line 556
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
            aload 2 /* curr */
            arraylength
            if_icmplt 8
         6: .line 557
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
         7: .line 558
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
         8: .line 560
      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 561
            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 566
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 567
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 569
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 570
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 573
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 574
            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 576
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 577
            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 578
            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 579
            return
        10: .line 582
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 583
            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 584
            iload 2 /* start */
            iload 5 /* max */
            iadd
            istore 2 /* start */
        13: .line 585
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        14: .line 590
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 591
            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 592
            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 593
            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 594
            iload 2 /* start */
            iload 6 /* amount */
            iadd
            istore 2 /* start */
        19: .line 595
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 596
            iload 3 /* len */
        21: .line 589
            ifgt 14
        22: .line 597
            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 602
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 2
         1: .line 603
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 605
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         3: .line 606
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         4: .line 609
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         5: .line 610
            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 611
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 10
         7: .line 612
            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 613
            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 614
            return
        10: .line 617
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 14
        11: .line 618
            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 619
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        13: .line 620
            iload 2 /* offset */
            iload 5 /* max */
            iadd
            istore 2 /* offset */
        14: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        15: .line 626
            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 627
            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 628
            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 629
            iload 2 /* offset */
            iload 6 /* amount */
            iadd
            istore 2 /* offset */
        19: .line 630
            iload 3 /* len */
            iload 6 /* amount */
            isub
            istore 3 /* len */
        end local 6 // int amount
        20: .line 631
            iload 3 /* len */
        21: .line 624
            ifgt 14
        22: .line 632
            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 646
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 3
         1: .line 647
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.unshare:(I)V
         2: .line 648
            goto 9
         3: .line 649
      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 650
            aload 1 /* curr */
            ifnonnull 7
         5: .line 651
            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 652
            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 654
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.expand:(I)V
        end local 1 // char[] curr
         9: .line 657
      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 663
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         1: .line 664
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         2: .line 665
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         3: .line 667
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 668
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         5: .line 669
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultArray:[C
         6: .line 672
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
            ifeq 8
         7: .line 673
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.clearSegments:()V
         8: .line 675
      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 676
            aload 1 /* curr */
            ifnonnull 11
        10: .line 677
            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 679
      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 682
            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 683
            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 689
            aload 0 /* this */
            iload 1 /* len */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         1: .line 691
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
            ifle 3
         2: .line 692
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.util.TextBuffer.contentsAsString:()Ljava/lang/String;
            areturn
         3: .line 695
      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 696
            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 697
            aload 0 /* this */
            aload 3 /* str */
            putfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
         8: .line 698
            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 702
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 703
            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 705
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         3: .line 706
            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 707
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            arraylength
            istore 1 /* oldLen */
        start local 1 // int oldLen
         5: .line 708
            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 709
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 712
            iload 1 /* oldLen */
            iload 1 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 2 /* newLen */
        start local 2 // int newLen
         8: .line 713
            iload 2 /* newLen */
            sipush 1000
            if_icmpge 11
         9: .line 714
            sipush 1000
            istore 2 /* newLen */
        10: .line 715
            goto 13
      StackMap locals: int int
      StackMap stack:
        11: iload 2 /* newLen */
            ldc 262144
            if_icmple 13
        12: .line 716
            ldc 262144
            istore 2 /* newLen */
        13: .line 718
      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 719
            aload 0 /* this */
            aload 3 /* curr */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
        15: .line 720
            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 730
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 1 /* curr */
        start local 1 // char[] curr
         1: .line 732
            aload 1 /* curr */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 733
            iload 2 /* len */
            iload 2 /* len */
            iconst_1
            ishr
            iadd
            istore 3 /* newLen */
        start local 3 // int newLen
         3: .line 735
            iload 3 /* newLen */
            ldc 262144
            if_icmple 5
         4: .line 736
            iload 2 /* len */
            iload 2 /* len */
            iconst_2
            ishr
            iadd
            istore 3 /* newLen */
         5: .line 738
      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 751
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         1: .line 752
            aload 2 /* curr */
            arraylength
            iload 1 /* minSize */
            if_icmplt 2
            aload 2 /* curr */
            areturn
         2: .line 753
      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 754
            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 768
            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 782
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 2 /* sharedLen */
        start local 2 // int sharedLen
         1: .line 783
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
         2: .line 784
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
            astore 3 /* inputBuf */
        start local 3 // char[] inputBuf
         3: .line 785
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputBuffer:[C
         4: .line 786
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            istore 4 /* start */
        start local 4 // int start
         5: .line 787
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
         6: .line 790
            iload 2 /* sharedLen */
            iload 1 /* needExtra */
            iadd
            istore 5 /* needed */
        start local 5 // int needed
         7: .line 791
            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 792
      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 794
      StackMap locals:
      StackMap stack:
            iload 2 /* sharedLen */
            ifle 11
        10: .line 795
            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 797
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._segmentSize:I
        12: .line 798
            aload 0 /* this */
            iload 2 /* sharedLen */
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
        13: .line 799
            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 808
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 809
            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 811
      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 812
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.util.TextBuffer._hasSegments:Z
         4: .line 813
            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 814
            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 815
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.util.TextBuffer._currentSize:I
         7: .line 816
            aload 2 /* curr */
            arraylength
            istore 3 /* oldLen */
        start local 3 // int oldLen
         8: .line 819
            iload 3 /* oldLen */
            iload 3 /* oldLen */
            iconst_1
            ishr
            iadd
            istore 4 /* newLen */
        start local 4 // int newLen
         9: .line 820
            iload 4 /* newLen */
            sipush 1000
            if_icmpge 12
        10: .line 821
            sipush 1000
            istore 4 /* newLen */
        11: .line 822
            goto 14
      StackMap locals: char[] int int
      StackMap stack:
        12: iload 4 /* newLen */
            ldc 262144
            if_icmple 14
        13: .line 823
            ldc 262144
            istore 4 /* newLen */
        14: .line 825
      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 826
            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 830
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            ifnull 2
         1: .line 831
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         2: .line 834
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputStart:I
            iflt 10
         3: .line 835
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._inputLen:I
            istore 1 /* len */
        start local 1 // int len
         4: .line 836
            iload 1 /* len */
            iconst_1
            if_icmpge 6
         5: .line 837
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
         6: .line 839
      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 840
            iload 2 /* start */
            ifne 9
         8: .line 841
            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 843
      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 846
      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 847
            iload 1 /* size */
            iconst_1
            if_icmpge 13
        12: .line 848
            getstatic com.fasterxml.jackson.core.util.TextBuffer.NO_CHARS:[C
            areturn
        13: .line 850
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 2 /* offset */
        start local 2 // int offset
        14: .line 851
            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 852
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.util.TextBuffer._segments:Ljava/util/ArrayList;
            ifnull 25
        16: .line 853
            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 854
      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 855
            aload 6 /* curr */
            arraylength
            istore 7 /* currLen */
        start local 7 // int currLen
        21: .line 856
            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 857
            iload 2 /* offset */
            iload 7 /* currLen */
            iadd
            istore 2 /* offset */
        end local 7 // int currLen
        end local 6 // char[] curr
        23: .line 853
            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 860
      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 861
            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 864
            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"