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

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

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

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

  private final com.fasterxml.aalto.in.ReaderConfig _config;
    descriptor: Lcom/fasterxml/aalto/in/ReaderConfig;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  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

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

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

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

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

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

  public static final int MAX_INDENT_SPACES;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  public static final int MAX_INDENT_TABS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  private static final java.lang.String sIndSpaces;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "\n                                 "

  private static final char[] sIndSpacesArray;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String[] sIndSpacesStrings;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String sIndTabs;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "\n\t\t\t\t\t\t\t\t\t"

  private static final char[] sIndTabsArray;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.String[] sIndTabsStrings;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 26
            iconst_0
            newarray 5
            putstatic com.fasterxml.aalto.util.TextBuilder.sNoChars:[C
         1: .line 115
            ldc "\n                                 "
            invokevirtual java.lang.String.toCharArray:()[C
            putstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesArray:[C
         2: .line 116
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesArray:[C
            arraylength
            anewarray java.lang.String
            putstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesStrings:[Ljava/lang/String;
         3: .line 121
            ldc "\n\t\t\t\t\t\t\t\t\t"
            invokevirtual java.lang.String.toCharArray:()[C
            putstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsArray:[C
         4: .line 122
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsArray:[C
            arraylength
            anewarray java.lang.String
            putstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsStrings:[Ljava/lang/String;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(com.fasterxml.aalto.in.ReaderConfig);
    descriptor: (Lcom/fasterxml/aalto/in/ReaderConfig;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // com.fasterxml.aalto.in.ReaderConfig cfg
         0: .line 130
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 104
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
         2: .line 132
            aload 0 /* this */
            aload 1 /* cfg */
            putfield com.fasterxml.aalto.util.TextBuilder._config:Lcom/fasterxml/aalto/in/ReaderConfig;
         3: .line 133
            return
        end local 1 // com.fasterxml.aalto.in.ReaderConfig cfg
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    4     1   cfg  Lcom/fasterxml/aalto/in/ReaderConfig;
    MethodParameters:
      Name  Flags
      cfg   

  public static com.fasterxml.aalto.util.TextBuilder createRecyclableBuffer(com.fasterxml.aalto.in.ReaderConfig);
    descriptor: (Lcom/fasterxml/aalto/in/ReaderConfig;)Lcom/fasterxml/aalto/util/TextBuilder;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.in.ReaderConfig cfg
         0: .line 137
            new com.fasterxml.aalto.util.TextBuilder
            dup
            aload 0 /* cfg */
            invokespecial com.fasterxml.aalto.util.TextBuilder.<init>:(Lcom/fasterxml/aalto/in/ReaderConfig;)V
            areturn
        end local 0 // com.fasterxml.aalto.in.ReaderConfig cfg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   cfg  Lcom/fasterxml/aalto/in/ReaderConfig;
    MethodParameters:
      Name  Flags
      cfg   

  public void recycle(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // boolean force
         0: .line 151
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._config:Lcom/fasterxml/aalto/in/ReaderConfig;
            ifnull 13
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            ifnull 13
         1: .line 152
            iload 1 /* force */
            ifeq 5
         2: .line 156
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         3: .line 157
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         4: .line 158
            goto 7
         5: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iadd
            ifle 7
         6: .line 163
            return
         7: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 10
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 10
         8: .line 169
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         9: .line 170
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
        10: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 2 /* buf */
        start local 2 // char[] buf
        11: .line 173
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
        12: .line 174
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._config:Lcom/fasterxml/aalto/in/ReaderConfig;
            aload 2 /* buf */
            invokevirtual com.fasterxml.aalto.in.ReaderConfig.freeMediumCBuffer:([C)V
        end local 2 // char[] buf
        13: .line 176
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean force
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   14     1  force  Z
           11   13     2    buf  [C
    MethodParameters:
       Name  Flags
      force  

  public char[] resetWithEmpty();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 183
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 184
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 185
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
         3: .line 188
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 6
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 6
         4: .line 193
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         5: .line 194
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         6: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         7: .line 197
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            ifnonnull 9
         8: .line 198
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.aalto.util.TextBuilder.allocBuffer:(I)[C
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
         9: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            areturn
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/fasterxml/aalto/util/TextBuilder;

  public void resetWithIndentation(int, char);
    descriptor: (IC)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int indCharCount
        start local 2 // char indChar
         0: .line 206
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 3
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 3
         1: .line 207
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         2: .line 208
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         3: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         4: .line 211
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
         5: .line 214
            iload 1 /* indCharCount */
            iconst_1
            iadd
            istore 4 /* strlen */
        start local 4 // int strlen
         6: .line 215
            aload 0 /* this */
            iload 4 /* strlen */
            putfield com.fasterxml.aalto.util.TextBuilder._resultLen:I
         7: .line 216
            iload 2 /* indChar */
            bipush 9
            if_icmpne 13
         8: .line 217
            aload 0 /* this */
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsArray:[C
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         9: .line 218
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsStrings:[Ljava/lang/String;
            iload 1 /* indCharCount */
            aaload
            astore 3 /* text */
        start local 3 // java.lang.String text
        10: .line 219
            aload 3 /* text */
            ifnonnull 17
        11: .line 220
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndTabsStrings:[Ljava/lang/String;
            iload 1 /* indCharCount */
            ldc "\n\t\t\t\t\t\t\t\t\t"
            iconst_0
            iload 4 /* strlen */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            dup
            astore 3 /* text */
            aastore
        12: .line 222
            goto 17
        end local 3 // java.lang.String text
        13: .line 223
      StackMap locals: com.fasterxml.aalto.util.TextBuilder int int top int
      StackMap stack:
            aload 0 /* this */
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesArray:[C
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
        14: .line 224
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesStrings:[Ljava/lang/String;
            iload 1 /* indCharCount */
            aaload
            astore 3 /* text */
        start local 3 // java.lang.String text
        15: .line 225
            aload 3 /* text */
            ifnonnull 17
        16: .line 226
            getstatic com.fasterxml.aalto.util.TextBuilder.sIndSpacesStrings:[Ljava/lang/String;
            iload 1 /* indCharCount */
            ldc "\n                                 "
            iconst_0
            iload 4 /* strlen */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            dup
            astore 3 /* text */
            aastore
        17: .line 229
      StackMap locals: com.fasterxml.aalto.util.TextBuilder int int java.lang.String int
      StackMap stack:
            aload 0 /* this */
            aload 3 /* text */
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
        18: .line 230
            return
        end local 4 // int strlen
        end local 3 // java.lang.String text
        end local 2 // char indChar
        end local 1 // int indCharCount
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   19     0          this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   19     1  indCharCount  I
            0   19     2       indChar  C
           10   13     3          text  Ljava/lang/String;
           15   19     3          text  Ljava/lang/String;
            6   19     4        strlen  I
    MethodParameters:
              Name  Flags
      indCharCount  
      indChar       

  public void resetWithChar(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // char c
         0: .line 237
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 238
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 239
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
         3: .line 242
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 6
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 6
         4: .line 243
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         5: .line 244
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         6: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         7: .line 247
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            ifnonnull 9
         8: .line 248
            aload 0 /* this */
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.util.TextBuilder.allocBuffer:(I)[C
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
         9: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            iload 1 /* c */
            castore
        10: .line 251
            return
        end local 1 // char c
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   11     1     c  C
    MethodParameters:
      Name  Flags
      c     

  public void resetWithSurrogate(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int c
         0: .line 255
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 256
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 257
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
         3: .line 260
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 6
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 6
         4: .line 261
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
         5: .line 262
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         6: .line 264
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         7: .line 265
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            ifnonnull 9
         8: .line 266
            aload 0 /* this */
            aload 0 /* this */
            iconst_2
            invokevirtual com.fasterxml.aalto.util.TextBuilder.allocBuffer:(I)[C
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
         9: .line 268
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            ldc 55296
            iload 1 /* c */
            bipush 10
            ishr
            ior
            i2c
            castore
        10: .line 269
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_1
            ldc 56320
            iload 1 /* c */
            sipush 1023
            iand
            ior
            i2c
            castore
        11: .line 270
            return
        end local 1 // int c
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   12     1     c  I
    MethodParameters:
      Name  Flags
      c     

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

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 288
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            istore 1 /* size */
        start local 1 // int size
         1: .line 291
            iload 1 /* size */
            ifge 3
         2: .line 292
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultLen:I
            ireturn
         3: .line 294
      StackMap locals: int
      StackMap stack:
            iload 1 /* size */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
            iadd
            ireturn
        end local 1 // int size
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            1    4     1  size  I

  public char[] getTextBuffer();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 300
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 1
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifne 4
         1: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 3
         2: .line 303
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            areturn
         3: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            areturn
         4: .line 308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.contentsAsArray:()[C
            areturn
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/aalto/util/TextBuilder;

  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.aalto.util.TextBuilder this
         0: .line 319
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            ifnonnull 22
         1: .line 321
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 4
         2: .line 322
            aload 0 /* this */
            new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            invokespecial java.lang.String.<init>:([C)V
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         3: .line 323
            goto 22
         4: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
            istore 1 /* segLen */
        start local 1 // int segLen
         5: .line 326
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            istore 2 /* currLen */
        start local 2 // int currLen
         6: .line 328
            iload 1 /* segLen */
            ifne 11
         7: .line 329
            aload 0 /* this */
            iload 2 /* currLen */
            ifne 8
            ldc ""
            goto 9
      StackMap locals: com.fasterxml.aalto.util.TextBuilder int int
      StackMap stack: com.fasterxml.aalto.util.TextBuilder
         8: new java.lang.String
            dup
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            iload 2 /* currLen */
            invokespecial java.lang.String.<init>:([CII)V
      StackMap locals: com.fasterxml.aalto.util.TextBuilder int int
      StackMap stack: com.fasterxml.aalto.util.TextBuilder java.lang.String
         9: putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
        10: .line 330
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            areturn
        11: .line 334
      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
        12: .line 336
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 20
        13: .line 337
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        14: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 5 /* len */
        start local 5 // int len
        15: goto 19
        16: .line 338
      StackMap locals: java.lang.StringBuilder int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._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
        17: .line 339
            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
        18: .line 337
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 16
        end local 5 // int len
        end local 4 // int i
        20: .line 343
      StackMap locals:
      StackMap stack:
            aload 3 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            iload 2 /* currLen */
            invokevirtual java.lang.StringBuilder.append:([CII)Ljava/lang/StringBuilder;
            pop
        21: .line 344
            aload 0 /* this */
            aload 3 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
        end local 3 // java.lang.StringBuilder sb
        end local 2 // int currLen
        end local 1 // int segLen
        22: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   23     0     this  Lcom/fasterxml/aalto/util/TextBuilder;
            5   22     1   segLen  I
            6   22     2  currLen  I
           12   22     3       sb  Ljava/lang/StringBuilder;
           14   20     4        i  I
           15   20     5      len  I
           17   18     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.aalto.util.TextBuilder this
         0: .line 352
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            astore 1 /* result */
        start local 1 // char[] result
         1: .line 353
            aload 1 /* result */
            ifnonnull 3
         2: .line 354
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.buildResultArray:()[C
            dup
            astore 1 /* result */
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         3: .line 356
      StackMap locals: char[]
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 1 // char[] result
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/fasterxml/aalto/util/TextBuilder;
            1    4     1  result  [C

  public int contentsToArray(int, char[], int, int);
    descriptor: (I[CII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=5
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int srcStart
        start local 2 // char[] dst
        start local 3 // int dstStart
        start local 4 // int len
         0: .line 365
            iconst_0
            istore 5 /* totalAmount */
        start local 5 // int totalAmount
         1: .line 366
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 21
         2: .line 367
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         3: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 7 /* segc */
        start local 7 // int segc
         4: goto 20
         5: .line 368
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 6 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 8 /* segment */
        start local 8 // char[] segment
         6: .line 369
            aload 8 /* segment */
            arraylength
            istore 9 /* segLen */
        start local 9 // int segLen
         7: .line 370
            iload 9 /* segLen */
            iload 1 /* srcStart */
            isub
            istore 10 /* amount */
        start local 10 // int amount
         8: .line 371
            iload 10 /* amount */
            iconst_1
            if_icmpge 11
         9: .line 372
            iload 1 /* srcStart */
            iload 9 /* segLen */
            isub
            istore 1 /* srcStart */
        10: .line 373
            goto 19
        11: .line 375
      StackMap locals: char[] int int
      StackMap stack:
            iload 10 /* amount */
            iload 4 /* len */
            if_icmplt 14
        12: .line 376
            aload 8 /* segment */
            iload 1 /* srcStart */
            aload 2 /* dst */
            iload 3 /* dstStart */
            iload 4 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 377
            iload 5 /* totalAmount */
            iload 4 /* len */
            iadd
            ireturn
        14: .line 380
      StackMap locals:
      StackMap stack:
            aload 8 /* segment */
            iload 1 /* srcStart */
            aload 2 /* dst */
            iload 3 /* dstStart */
            iload 10 /* amount */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        15: .line 381
            iload 5 /* totalAmount */
            iload 10 /* amount */
            iadd
            istore 5 /* totalAmount */
        16: .line 382
            iload 3 /* dstStart */
            iload 10 /* amount */
            iadd
            istore 3 /* dstStart */
        17: .line 383
            iload 4 /* len */
            iload 10 /* amount */
            isub
            istore 4 /* len */
        18: .line 384
            iconst_0
            istore 1 /* srcStart */
        end local 10 // int amount
        end local 9 // int segLen
        end local 8 // char[] segment
        19: .line 367
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 6 /* i */
            iload 7 /* segc */
            if_icmplt 5
        end local 7 // int segc
        end local 6 // int i
        21: .line 389
      StackMap locals:
      StackMap stack:
            iload 4 /* len */
            ifle 28
        22: .line 390
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 1 /* srcStart */
            isub
            istore 6 /* maxAmount */
        start local 6 // int maxAmount
        23: .line 391
            iload 4 /* len */
            iload 6 /* maxAmount */
            if_icmple 25
        24: .line 392
            iload 6 /* maxAmount */
            istore 4 /* len */
        25: .line 394
      StackMap locals: int
      StackMap stack:
            iload 4 /* len */
            ifle 28
        26: .line 395
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iload 1 /* srcStart */
            aload 2 /* dst */
            iload 3 /* dstStart */
            iload 4 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        27: .line 396
            iload 5 /* totalAmount */
            iload 4 /* len */
            iadd
            istore 5 /* totalAmount */
        end local 6 // int maxAmount
        28: .line 400
      StackMap locals:
      StackMap stack:
            iload 5 /* totalAmount */
            ireturn
        end local 5 // int totalAmount
        end local 4 // int len
        end local 3 // int dstStart
        end local 2 // char[] dst
        end local 1 // int srcStart
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   29     0         this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   29     1     srcStart  I
            0   29     2          dst  [C
            0   29     3     dstStart  I
            0   29     4          len  I
            1   29     5  totalAmount  I
            3   21     6            i  I
            4   21     7         segc  I
            6   19     8      segment  [C
            7   19     9       segLen  I
            8   19    10       amount  I
           23   28     6    maxAmount  I
    MethodParameters:
          Name  Flags
      srcStart  
      dst       
      dstStart  
      len       

  public int rawContentsTo(java.io.Writer);
    descriptor: (Ljava/io/Writer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // java.io.Writer w
         0: .line 411
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 3
         1: .line 412
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            invokevirtual java.io.Writer.write:([C)V
         2: .line 413
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            arraylength
            ireturn
         3: .line 415
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            ifnull 6
         4: .line 416
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            invokevirtual java.io.Writer.write:(Ljava/lang/String;)V
         5: .line 417
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            ireturn
         6: .line 421
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* rlen */
        start local 2 // int rlen
         7: .line 422
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 16
         8: .line 423
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 4 /* len */
        start local 4 // int len
        10: goto 15
        11: .line 424
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 3 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 5 /* ch */
        start local 5 // char[] ch
        12: .line 425
            aload 1 /* w */
            aload 5 /* ch */
            invokevirtual java.io.Writer.write:([C)V
        13: .line 426
            iload 2 /* rlen */
            aload 5 /* ch */
            arraylength
            iadd
            istore 2 /* rlen */
        end local 5 // char[] ch
        14: .line 423
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            iload 4 /* len */
            if_icmplt 11
        end local 4 // int len
        end local 3 // int i
        16: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            ifle 19
        17: .line 430
            aload 1 /* w */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokevirtual java.io.Writer.write:([CII)V
        18: .line 431
            iload 2 /* rlen */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iadd
            istore 2 /* rlen */
        19: .line 433
      StackMap locals:
      StackMap stack:
            iload 2 /* rlen */
            ireturn
        end local 2 // int rlen
        end local 1 // java.io.Writer w
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   20     1     w  Ljava/io/Writer;
            7   20     2  rlen  I
            9   16     3     i  I
           10   16     4   len  I
           12   14     5    ch  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      w     

  public boolean isAllWhitespace();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 438
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
            ifeq 2
         1: .line 439
            iconst_1
            ireturn
         2: .line 442
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 16
         3: .line 443
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         4: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* len */
        start local 2 // int len
         5: goto 15
         6: .line 444
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 1 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 3 /* buf */
        start local 3 // char[] buf
         7: .line 445
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         8: aload 3 /* buf */
            arraylength
            istore 5 /* len2 */
        start local 5 // int len2
         9: goto 13
        10: .line 446
      StackMap locals: char[] int int
      StackMap stack:
            aload 3 /* buf */
            iload 4 /* j */
            caload
            bipush 32
            if_icmple 12
        11: .line 447
            iconst_0
            ireturn
        12: .line 445
      StackMap locals:
      StackMap stack:
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* j */
            iload 5 /* len2 */
            if_icmplt 10
        end local 5 // int len2
        end local 4 // int j
        end local 3 // char[] buf
        14: .line 443
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 1 /* i */
            iload 2 /* len */
            if_icmplt 6
        end local 2 // int len
        end local 1 // int i
        16: .line 453
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 1 /* buf */
        start local 1 // char[] buf
        17: .line 454
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        18: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            istore 3 /* len */
        start local 3 // int len
        19: goto 23
        20: .line 455
      StackMap locals: char[] int int
      StackMap stack:
            aload 1 /* buf */
            iload 2 /* i */
            caload
            bipush 32
            if_icmple 22
        21: .line 456
            iconst_0
            ireturn
        22: .line 454
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 2 /* i */
            iload 3 /* len */
            if_icmplt 20
        end local 3 // int len
        end local 2 // int i
        24: .line 459
            iconst_1
            ireturn
        end local 1 // char[] buf
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            4   16     1     i  I
            5   16     2   len  I
            7   14     3   buf  [C
            8   14     4     j  I
            9   14     5  len2  I
           17   25     1   buf  [C
           18   24     2     i  I
           19   24     3   len  I

  public boolean endsWith(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // java.lang.String str
         0: .line 471
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* segIndex */
        start local 2 // int segIndex
         3: .line 472
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            istore 3 /* inIndex */
        start local 3 // int inIndex
         4: .line 473
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 4 /* buf */
        start local 4 // char[] buf
         5: .line 474
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iconst_1
            isub
            istore 5 /* bufIndex */
        start local 5 // int bufIndex
         6: .line 476
            goto 16
         7: .line 477
      StackMap locals: com.fasterxml.aalto.util.TextBuilder java.lang.String int int char[] int
      StackMap stack:
            aload 1 /* str */
            iload 3 /* inIndex */
            invokevirtual java.lang.String.charAt:(I)C
            aload 4 /* buf */
            iload 5 /* bufIndex */
            caload
            if_icmpeq 9
         8: .line 478
            iconst_0
            ireturn
         9: .line 480
      StackMap locals:
      StackMap stack:
            iinc 3 /* inIndex */ -1
            iload 3 /* inIndex */
            ifne 11
        10: .line 481
            goto 17
        11: .line 483
      StackMap locals:
      StackMap stack:
            iinc 5 /* bufIndex */ -1
            iload 5 /* bufIndex */
            ifge 16
        12: .line 484
            iinc 2 /* segIndex */ -1
            iload 2 /* segIndex */
            ifge 14
        13: .line 485
            iconst_0
            ireturn
        14: .line 487
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 2 /* segIndex */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 4 /* buf */
        15: .line 488
            aload 4 /* buf */
            arraylength
            iconst_1
            isub
            istore 5 /* bufIndex */
        16: .line 476
      StackMap locals:
      StackMap stack:
            iload 3 /* inIndex */
            ifge 7
        17: .line 492
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // int bufIndex
        end local 4 // char[] buf
        end local 3 // int inIndex
        end local 2 // int segIndex
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   18     1       str  Ljava/lang/String;
            3   18     2  segIndex  I
            4   18     3   inIndex  I
            5   18     4       buf  [C
            6   18     5  bufIndex  I
    MethodParameters:
      Name  Flags
      str   

  public boolean equalsString(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // java.lang.String str
         0: .line 503
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* expLen */
        start local 2 // int expLen
         1: .line 506
            iload 2 /* expLen */
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.size:()I
            if_icmpeq 3
         2: .line 507
            iconst_0
            ireturn
         3: .line 510
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 4
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifne 6
         4: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 3 /* seg */
        start local 3 // char[] seg
         5: .line 513
            goto 7
        end local 3 // char[] seg
         6: .line 518
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.contentsAsArray:()[C
            astore 3 /* seg */
        start local 3 // char[] seg
         7: .line 521
      StackMap locals: char[]
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         8: goto 12
         9: .line 522
      StackMap locals: int
      StackMap stack:
            aload 3 /* seg */
            iload 4 /* i */
            caload
            aload 1 /* str */
            iload 4 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            if_icmpeq 11
        10: .line 523
            iconst_0
            ireturn
        11: .line 521
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* expLen */
            if_icmplt 9
        end local 4 // int i
        13: .line 526
            iconst_1
            ireturn
        end local 3 // char[] seg
        end local 2 // int expLen
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   14     1     str  Ljava/lang/String;
            1   14     2  expLen  I
            5    6     3     seg  [C
            7   14     3     seg  [C
            8   13     4       i  I
    MethodParameters:
      Name  Flags
      str   

  public void fireSaxCharacterEvents(org.xml.sax.ContentHandler);
    descriptor: (Lorg/xml/sax/ContentHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // org.xml.sax.ContentHandler h
         0: .line 543
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 3
         1: .line 544
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultLen:I
            invokeinterface org.xml.sax.ContentHandler.characters:([CII)V
         2: .line 545
            goto 13
         3: .line 546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 11
         4: .line 547
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* len */
        start local 3 // int len
         6: goto 10
         7: .line 548
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 4 /* ch */
        start local 4 // char[] ch
         8: .line 549
            aload 1 /* h */
            aload 4 /* ch */
            iconst_0
            aload 4 /* ch */
            arraylength
            invokeinterface org.xml.sax.ContentHandler.characters:([CII)V
        end local 4 // char[] ch
         9: .line 547
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            iload 3 /* len */
            if_icmplt 7
        end local 3 // int len
        end local 2 // int i
        11: .line 552
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            ifle 13
        12: .line 553
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokeinterface org.xml.sax.ContentHandler.characters:([CII)V
        13: .line 556
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.ContentHandler h
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   14     1     h  Lorg/xml/sax/ContentHandler;
            5   11     2     i  I
            6   11     3   len  I
            8    9     4    ch  [C
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      h     

  public void fireSaxSpaceEvents(org.xml.sax.ContentHandler);
    descriptor: (Lorg/xml/sax/ContentHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // org.xml.sax.ContentHandler h
         0: .line 561
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 3
         1: .line 562
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultLen:I
            invokeinterface org.xml.sax.ContentHandler.ignorableWhitespace:([CII)V
         2: .line 563
            goto 13
         3: .line 564
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 11
         4: .line 565
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* len */
        start local 3 // int len
         6: goto 10
         7: .line 566
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            iload 2 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast char[]
            astore 4 /* ch */
        start local 4 // char[] ch
         8: .line 567
            aload 1 /* h */
            aload 4 /* ch */
            iconst_0
            aload 4 /* ch */
            arraylength
            invokeinterface org.xml.sax.ContentHandler.ignorableWhitespace:([CII)V
        end local 4 // char[] ch
         9: .line 565
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            iload 3 /* len */
            if_icmplt 7
        end local 3 // int len
        end local 2 // int i
        11: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            ifle 13
        12: .line 571
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokeinterface org.xml.sax.ContentHandler.ignorableWhitespace:([CII)V
        13: .line 574
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.ContentHandler h
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   14     1     h  Lorg/xml/sax/ContentHandler;
            5   11     2     i  I
            6   11     3   len  I
            8    9     4    ch  [C
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      h     

  public void fireSaxCommentEvent(org.xml.sax.ext.LexicalHandler);
    descriptor: (Lorg/xml/sax/ext/LexicalHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // org.xml.sax.ext.LexicalHandler h
         0: .line 580
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            ifnull 3
         1: .line 581
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultLen:I
            invokeinterface org.xml.sax.ext.LexicalHandler.comment:([CII)V
         2: .line 582
            goto 8
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 7
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifle 7
         4: .line 583
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.contentsAsArray:()[C
            astore 2 /* ch */
        start local 2 // char[] ch
         5: .line 584
            aload 1 /* h */
            aload 2 /* ch */
            iconst_0
            aload 2 /* ch */
            arraylength
            invokeinterface org.xml.sax.ext.LexicalHandler.comment:([CII)V
        end local 2 // char[] ch
         6: .line 585
            goto 8
         7: .line 586
      StackMap locals:
      StackMap stack:
            aload 1 /* h */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokeinterface org.xml.sax.ext.LexicalHandler.comment:([CII)V
         8: .line 588
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xml.sax.ext.LexicalHandler h
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    9     1     h  Lorg/xml/sax/ext/LexicalHandler;
            5    6     2    ch  [C
    Exceptions:
      throws org.xml.sax.SAXException
    MethodParameters:
      Name  Flags
      h     

  public void append(char);
    descriptor: (C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // char c
         0: .line 616
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 617
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 619
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         3: .line 620
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            aload 2 /* curr */
            arraylength
            if_icmplt 5
         4: .line 621
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.aalto.util.TextBuilder.expand:(I)V
         5: .line 623
      StackMap locals: char[]
      StackMap stack:
            aload 2 /* curr */
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 1 /* c */
            castore
         6: .line 624
            return
        end local 2 // char[] curr
        end local 1 // char c
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    7     1     c  C
            3    7     2  curr  [C
    MethodParameters:
      Name  Flags
      c     

  public void appendSurrogate(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int surr
         0: .line 628
            aload 0 /* this */
            ldc 55296
            iload 1 /* surr */
            bipush 10
            ishr
            ior
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
         1: .line 629
            aload 0 /* this */
            ldc 56320
            iload 1 /* surr */
            sipush 1023
            iand
            ior
            i2c
            invokevirtual com.fasterxml.aalto.util.TextBuilder.append:(C)V
         2: .line 630
            return
        end local 1 // int surr
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    3     1  surr  I
    MethodParameters:
      Name  Flags
      surr  

  public void append(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // char[] c
        start local 2 // int start
        start local 3 // int len
         0: .line 634
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 635
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 638
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 4 /* curr */
        start local 4 // char[] curr
         3: .line 639
            aload 4 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            isub
            istore 5 /* max */
        start local 5 // int max
         4: .line 641
            iload 5 /* max */
            iload 3 /* len */
            if_icmplt 8
         5: .line 642
            aload 1 /* c */
            iload 2 /* start */
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 643
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 3 /* len */
            iadd
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         7: .line 644
            goto 15
         8: .line 646
      StackMap locals: char[] int
      StackMap stack:
            iload 5 /* max */
            ifle 12
         9: .line 647
            aload 1 /* c */
            iload 2 /* start */
            aload 4 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 5 /* max */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 648
            iload 2 /* start */
            iload 5 /* max */
            iadd
            istore 2 /* start */
        11: .line 649
            iload 3 /* len */
            iload 5 /* max */
            isub
            istore 3 /* len */
        12: .line 654
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.expand:(I)V
        13: .line 655
            aload 1 /* c */
            iload 2 /* start */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 656
            aload 0 /* this */
            iload 3 /* len */
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
        15: .line 658
      StackMap locals:
      StackMap stack:
            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.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   16     1      c  [C
            0   16     2  start  I
            0   16     3    len  I
            3   16     4   curr  [C
            4   16     5    max  I
    MethodParameters:
       Name  Flags
      c      
      start  
      len    

  public void append(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // java.lang.String str
         0: .line 662
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 663
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 665
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         3: .line 667
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 3 /* curr */
        start local 3 // char[] curr
         4: .line 668
            aload 3 /* curr */
            arraylength
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            isub
            istore 4 /* max */
        start local 4 // int max
         5: .line 669
            iload 4 /* max */
            iload 2 /* len */
            if_icmplt 9
         6: .line 670
            aload 1 /* str */
            iconst_0
            iload 2 /* len */
            aload 3 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokevirtual java.lang.String.getChars:(II[CI)V
         7: .line 671
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            iload 2 /* len */
            iadd
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         8: .line 672
            goto 15
         9: .line 674
      StackMap locals: int char[] int
      StackMap stack:
            iload 4 /* max */
            ifle 12
        10: .line 675
            aload 1 /* str */
            iconst_0
            iload 4 /* max */
            aload 3 /* curr */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokevirtual java.lang.String.getChars:(II[CI)V
        11: .line 676
            iload 2 /* len */
            iload 4 /* max */
            isub
            istore 2 /* len */
        12: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* len */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.expand:(I)V
        13: .line 682
            aload 1 /* str */
            iload 4 /* max */
            iload 4 /* max */
            iload 2 /* len */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
        14: .line 683
            aload 0 /* this */
            iload 2 /* len */
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
        15: .line 685
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int max
        end local 3 // char[] curr
        end local 2 // int len
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   16     1   str  Ljava/lang/String;
            3   16     2   len  I
            4   16     3  curr  [C
            5   16     4   max  I
    MethodParameters:
      Name  Flags
      str   

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

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

  public char[] finishCurrentSegment();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 703
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 704
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
         2: .line 706
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         3: .line 707
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            arraylength
            istore 1 /* oldLen */
        start local 1 // int oldLen
         4: .line 708
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
            iload 1 /* oldLen */
            iadd
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         5: .line 709
            aload 0 /* this */
            iload 1 /* oldLen */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.calcNewSize:(I)I
            newarray 5
            astore 2 /* curr */
        start local 2 // char[] curr
         6: .line 710
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         7: .line 711
            aload 0 /* this */
            aload 2 /* curr */
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
         8: .line 712
            aload 2 /* curr */
            areturn
        end local 2 // char[] curr
        end local 1 // int oldLen
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/aalto/util/TextBuilder;
            4    9     1  oldLen  I
            6    9     2    curr  [C

  private int calcNewSize(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int latestSize
         0: .line 718
            iload 1 /* latestSize */
            sipush 8000
            if_icmpge 1
            iload 1 /* latestSize */
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* latestSize */
            iconst_1
            ishr
      StackMap locals:
      StackMap stack: int
         2: istore 2 /* incr */
        start local 2 // int incr
         3: .line 719
            iload 1 /* latestSize */
            iload 2 /* incr */
            iadd
            istore 3 /* size */
        start local 3 // int size
         4: .line 721
            iload 3 /* size */
            ldc 262144
            invokestatic java.lang.Math.min:(II)I
            ireturn
        end local 3 // int size
        end local 2 // int incr
        end local 1 // int latestSize
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    5     1  latestSize  I
            3    5     2        incr  I
            4    5     3        size  I
    MethodParameters:
            Name  Flags
      latestSize  

  public int decodeElements(org.codehaus.stax2.typed.TypedArrayDecoder, boolean);
    descriptor: (Lorg/codehaus/stax2/typed/TypedArrayDecoder;Z)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=3
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // org.codehaus.stax2.typed.TypedArrayDecoder tad
        start local 2 // boolean reset
         0: .line 738
            iload 2 /* reset */
            ifeq 2
         1: .line 739
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.resetForDecode:()V
         2: .line 742
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._decodePtr:I
            istore 3 /* ptr */
        start local 3 // int ptr
         3: .line 743
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._decodeBuffer:[C
            astore 4 /* buf */
        start local 4 // char[] buf
         4: .line 745
            iconst_0
            istore 5 /* count */
        start local 5 // int count
         5: .line 748
            iload 3 /* ptr */
            istore 6 /* start */
        start local 6 // int start
         6: .line 751
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._decodeEnd:I
            istore 7 /* end */
        start local 7 // int end
         7: .line 754
            goto 22
         8: .line 757
      StackMap locals: com.fasterxml.aalto.util.TextBuilder org.codehaus.stax2.typed.TypedArrayDecoder int int char[] int int int
      StackMap stack:
            iinc 3 /* ptr */ 1
            iload 3 /* ptr */
            iload 7 /* end */
            if_icmplt 10
         9: .line 758
            goto 23
        10: .line 756
      StackMap locals:
      StackMap stack:
            aload 4 /* buf */
            iload 3 /* ptr */
            caload
            bipush 32
            if_icmple 8
        11: .line 762
            iload 3 /* ptr */
            istore 6 /* start */
        12: .line 763
            iinc 3 /* ptr */ 1
        13: .line 764
            goto 15
        14: .line 765
      StackMap locals:
      StackMap stack:
            iinc 3 /* ptr */ 1
        15: .line 764
      StackMap locals:
      StackMap stack:
            iload 3 /* ptr */
            iload 7 /* end */
            if_icmpge 16
            aload 4 /* buf */
            iload 3 /* ptr */
            caload
            bipush 32
            if_icmpgt 14
        16: .line 767
      StackMap locals:
      StackMap stack:
            iinc 5 /* count */ 1
        17: .line 768
            iload 3 /* ptr */
            istore 8 /* tokenEnd */
        start local 8 // int tokenEnd
        18: .line 769
            iinc 3 /* ptr */ 1
        19: .line 771
            aload 1 /* tad */
            aload 4 /* buf */
            iload 6 /* start */
            iload 8 /* tokenEnd */
            invokevirtual org.codehaus.stax2.typed.TypedArrayDecoder.decodeValue:([CII)Z
            ifeq 21
        20: .line 772
            goto 23
        21: .line 774
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* ptr */
            putfield com.fasterxml.aalto.util.TextBuilder._decodePtr:I
        end local 8 // int tokenEnd
        22: .line 754
      StackMap locals:
      StackMap stack:
            iload 3 /* ptr */
            iload 7 /* end */
            if_icmplt 10
        23: .line 776
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* ptr */
            putfield com.fasterxml.aalto.util.TextBuilder._decodePtr:I
        end local 7 // int end
        24: .line 777
            goto 28
      StackMap locals: com.fasterxml.aalto.util.TextBuilder org.codehaus.stax2.typed.TypedArrayDecoder int int char[] int int
      StackMap stack: java.lang.IllegalArgumentException
        25: astore 7 /* iae */
        start local 7 // java.lang.IllegalArgumentException iae
        26: .line 780
            new java.lang.String
            dup
            aload 4 /* buf */
            iload 6 /* start */
            iload 3 /* ptr */
            iload 6 /* start */
            isub
            iconst_1
            isub
            invokespecial java.lang.String.<init>:([CII)V
            astore 8 /* lexical */
        start local 8 // java.lang.String lexical
        27: .line 781
            new org.codehaus.stax2.typed.TypedXMLStreamException
            dup
            aload 8 /* lexical */
            aload 7 /* iae */
            invokevirtual java.lang.IllegalArgumentException.getMessage:()Ljava/lang/String;
            aload 7 /* iae */
            invokespecial org.codehaus.stax2.typed.TypedXMLStreamException.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/IllegalArgumentException;)V
            athrow
        end local 8 // java.lang.String lexical
        end local 7 // java.lang.IllegalArgumentException iae
        28: .line 783
      StackMap locals:
      StackMap stack:
            iload 5 /* count */
            ireturn
        end local 6 // int start
        end local 5 // int count
        end local 4 // char[] buf
        end local 3 // int ptr
        end local 2 // boolean reset
        end local 1 // org.codehaus.stax2.typed.TypedArrayDecoder tad
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   29     0      this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   29     1       tad  Lorg/codehaus/stax2/typed/TypedArrayDecoder;
            0   29     2     reset  Z
            3   29     3       ptr  I
            4   29     4       buf  [C
            5   29     5     count  I
            6   29     6     start  I
            7   24     7       end  I
           18   22     8  tokenEnd  I
           26   28     7       iae  Ljava/lang/IllegalArgumentException;
           27   28     8   lexical  Ljava/lang/String;
      Exception table:
        from    to  target  type
           6    24      25  Class java.lang.IllegalArgumentException
    Exceptions:
      throws org.codehaus.stax2.typed.TypedXMLStreamException
    MethodParameters:
       Name  Flags
      tad    
      reset  

  public void resetForBinaryDecode(org.codehaus.stax2.typed.Base64Variant, org.codehaus.stax2.ri.typed.CharArrayBase64Decoder, boolean);
    descriptor: (Lorg/codehaus/stax2/typed/Base64Variant;Lorg/codehaus/stax2/ri/typed/CharArrayBase64Decoder;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // org.codehaus.stax2.typed.Base64Variant v
        start local 2 // org.codehaus.stax2.ri.typed.CharArrayBase64Decoder dec
        start local 3 // boolean firstChunk
         0: .line 793
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 1
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifne 4
         1: .line 794
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
            ifeq 4
         2: .line 795
            aload 2 /* dec */
            aload 1 /* v */
            iload 3 /* firstChunk */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            arraylength
            aconst_null
            invokevirtual org.codehaus.stax2.ri.typed.CharArrayBase64Decoder.init:(Lorg/codehaus/stax2/typed/Base64Variant;Z[CIILjava/util/List;)V
         3: .line 796
            return
         4: .line 799
      StackMap locals:
      StackMap stack:
            aload 2 /* dec */
            aload 1 /* v */
            iload 3 /* firstChunk */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual org.codehaus.stax2.ri.typed.CharArrayBase64Decoder.init:(Lorg/codehaus/stax2/typed/Base64Variant;Z[CIILjava/util/List;)V
         5: .line 800
            return
        end local 3 // boolean firstChunk
        end local 2 // org.codehaus.stax2.ri.typed.CharArrayBase64Decoder dec
        end local 1 // org.codehaus.stax2.typed.Base64Variant v
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    6     1           v  Lorg/codehaus/stax2/typed/Base64Variant;
            0    6     2         dec  Lorg/codehaus/stax2/ri/typed/CharArrayBase64Decoder;
            0    6     3  firstChunk  Z
    MethodParameters:
            Name  Flags
      v           
      dec         
      firstChunk  

  private final void resetForDecode();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 807
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._decodePtr:I
         1: .line 808
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 2
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ifne 9
         2: .line 809
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._isIndentation:Z
            ifeq 6
         3: .line 810
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            putfield com.fasterxml.aalto.util.TextBuilder._decodeBuffer:[C
         4: .line 811
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
            arraylength
            putfield com.fasterxml.aalto.util.TextBuilder._decodeEnd:I
         5: .line 812
            goto 11
         6: .line 813
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            putfield com.fasterxml.aalto.util.TextBuilder._decodeBuffer:[C
         7: .line 814
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            putfield com.fasterxml.aalto.util.TextBuilder._decodeEnd:I
         8: .line 816
            goto 11
         9: .line 818
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.contentsAsArray:()[C
            putfield com.fasterxml.aalto.util.TextBuilder._decodeBuffer:[C
        10: .line 819
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._decodeBuffer:[C
            arraylength
            putfield com.fasterxml.aalto.util.TextBuilder._decodeEnd:I
        11: .line 821
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/fasterxml/aalto/util/TextBuilder;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 836
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
         1: .line 837
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.util.TextBuilder._resultArray:[C
         2: .line 838
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.contentsAsString:()Ljava/lang/String;
            areturn
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/aalto/util/TextBuilder;

  private final char[] allocBuffer(int);
    descriptor: (I)[C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int minNeeded
         0: .line 849
            sipush 500
            iload 1 /* minNeeded */
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* size */
        start local 2 // int size
         1: .line 850
            aconst_null
            astore 3 /* buf */
        start local 3 // char[] buf
         2: .line 851
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._config:Lcom/fasterxml/aalto/in/ReaderConfig;
            ifnull 6
         3: .line 852
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._config:Lcom/fasterxml/aalto/in/ReaderConfig;
            iload 2 /* size */
            invokevirtual com.fasterxml.aalto.in.ReaderConfig.allocMediumCBuffer:(I)[C
            astore 3 /* buf */
         4: .line 853
            aload 3 /* buf */
            ifnull 6
         5: .line 854
            aload 3 /* buf */
            areturn
         6: .line 857
      StackMap locals: int char[]
      StackMap stack:
            iload 2 /* size */
            newarray 5
            areturn
        end local 3 // char[] buf
        end local 2 // int size
        end local 1 // int minNeeded
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/fasterxml/aalto/util/TextBuilder;
            0    7     1  minNeeded  I
            1    7     2       size  I
            2    7     3        buf  [C
    MethodParameters:
           Name  Flags
      minNeeded  

  private void expand(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
        start local 1 // int roomNeeded
         0: .line 867
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnonnull 2
         1: .line 868
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
         2: .line 870
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            astore 2 /* curr */
        start local 2 // char[] curr
         3: .line 871
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            aload 2 /* curr */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         4: .line 872
            aload 2 /* curr */
            arraylength
            istore 3 /* oldLen */
        start local 3 // int oldLen
         5: .line 873
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
            iload 3 /* oldLen */
            iadd
            putfield com.fasterxml.aalto.util.TextBuilder._segmentSize:I
         6: .line 874
            iload 1 /* roomNeeded */
            aload 0 /* this */
            iload 3 /* oldLen */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.calcNewSize:(I)I
            invokestatic java.lang.Math.max:(II)I
            istore 4 /* newSize */
        start local 4 // int newSize
         7: .line 875
            iload 4 /* newSize */
            newarray 5
            astore 2 /* curr */
         8: .line 876
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
         9: .line 877
            aload 0 /* this */
            aload 2 /* curr */
            putfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
        10: .line 878
            return
        end local 4 // int newSize
        end local 3 // int oldLen
        end local 2 // char[] curr
        end local 1 // int roomNeeded
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lcom/fasterxml/aalto/util/TextBuilder;
            0   11     1  roomNeeded  I
            3   11     2        curr  [C
            5   11     3      oldLen  I
            7   11     4     newSize  I
    MethodParameters:
            Name  Flags
      roomNeeded  

  private char[] buildResultArray();
    descriptor: ()[C
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // com.fasterxml.aalto.util.TextBuilder this
         0: .line 882
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            ifnull 2
         1: .line 883
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._resultString:Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            areturn
         2: .line 886
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.util.TextBuilder.size:()I
            istore 2 /* size */
        start local 2 // int size
         3: .line 887
            iload 2 /* size */
            iconst_1
            if_icmpge 5
         4: .line 888
            getstatic com.fasterxml.aalto.util.TextBuilder.sNoChars:[C
            areturn
         5: .line 890
      StackMap locals: com.fasterxml.aalto.util.TextBuilder top int
      StackMap stack:
            iconst_0
            istore 3 /* offset */
        start local 3 // int offset
         6: .line 891
            iload 2 /* size */
            newarray 5
            astore 1 /* result */
        start local 1 // char[] result
         7: .line 892
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            ifnull 17
         8: .line 893
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         9: aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._segments:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 5 /* len */
        start local 5 // int len
        10: goto 16
        11: .line 894
      StackMap locals: com.fasterxml.aalto.util.TextBuilder char[] int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._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
        12: .line 895
            aload 6 /* curr */
            arraylength
            istore 7 /* currLen */
        start local 7 // int currLen
        13: .line 896
            aload 6 /* curr */
            iconst_0
            aload 1 /* result */
            iload 3 /* offset */
            iload 7 /* currLen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 897
            iload 3 /* offset */
            iload 7 /* currLen */
            iadd
            istore 3 /* offset */
        end local 7 // int currLen
        end local 6 // char[] curr
        15: .line 893
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 11
        end local 5 // int len
        end local 4 // int i
        17: .line 900
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSegment:[C
            iconst_0
            aload 1 /* result */
            iload 3 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.aalto.util.TextBuilder._currentSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 901
            aload 1 /* result */
            areturn
        end local 3 // int offset
        end local 2 // int size
        end local 1 // char[] result
        end local 0 // com.fasterxml.aalto.util.TextBuilder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lcom/fasterxml/aalto/util/TextBuilder;
            7   19     1   result  [C
            3   19     2     size  I
            6   19     3   offset  I
            9   17     4        i  I
           10   17     5      len  I
           12   15     6     curr  [C
           13   15     7  currLen  I
}
SourceFile: "TextBuilder.java"