public final class freemarker.core.TextBlock extends freemarker.core.TemplateElement
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: freemarker.core.TextBlock
  super_class: freemarker.core.TemplateElement
{
  private char[] text;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private final boolean unparsed;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // java.lang.String text
         0: .line 43
            aload 0 /* this */
            aload 1 /* text */
            iconst_0
            invokespecial freemarker.core.TextBlock.<init>:(Ljava/lang/String;Z)V
         1: .line 44
            return
        end local 1 // java.lang.String text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/core/TextBlock;
            0    2     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // freemarker.core.TextBlock this
        start local 1 // java.lang.String text
        start local 2 // boolean unparsed
         0: .line 47
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual java.lang.String.toCharArray:()[C
            iload 2 /* unparsed */
            invokespecial freemarker.core.TextBlock.<init>:([CZ)V
         1: .line 48
            return
        end local 2 // boolean unparsed
        end local 1 // java.lang.String text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lfreemarker/core/TextBlock;
            0    2     1      text  Ljava/lang/String;
            0    2     2  unparsed  Z
    MethodParameters:
          Name  Flags
      text      
      unparsed  

  void <init>(char[], boolean);
    descriptor: ([CZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // freemarker.core.TextBlock this
        start local 1 // char[] text
        start local 2 // boolean unparsed
         0: .line 50
            aload 0 /* this */
            invokespecial freemarker.core.TemplateElement.<init>:()V
         1: .line 51
            aload 0 /* this */
            aload 1 /* text */
            putfield freemarker.core.TextBlock.text:[C
         2: .line 52
            aload 0 /* this */
            iload 2 /* unparsed */
            putfield freemarker.core.TextBlock.unparsed:Z
         3: .line 53
            return
        end local 2 // boolean unparsed
        end local 1 // char[] text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lfreemarker/core/TextBlock;
            0    4     1      text  [C
            0    4     2  unparsed  Z
    MethodParameters:
          Name  Flags
      text      
      unparsed  

  void replaceText(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // java.lang.String text
         0: .line 56
            aload 0 /* this */
            aload 1 /* text */
            invokevirtual java.lang.String.toCharArray:()[C
            putfield freemarker.core.TextBlock.text:[C
         1: .line 57
            return
        end local 1 // java.lang.String text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/core/TextBlock;
            0    2     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public freemarker.core.TemplateElement[] accept(freemarker.core.Environment);
    descriptor: (Lfreemarker/core/Environment;)[Lfreemarker/core/TemplateElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // freemarker.core.Environment env
         0: .line 67
            aload 1 /* env */
            invokevirtual freemarker.core.Environment.getOut:()Ljava/io/Writer;
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            invokevirtual java.io.Writer.write:([C)V
         1: .line 68
            aconst_null
            areturn
        end local 1 // freemarker.core.Environment env
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/core/TextBlock;
            0    2     1   env  Lfreemarker/core/Environment;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      env   

  protected java.lang.String dump(boolean);
    descriptor: (Z)Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // boolean canonical
         0: .line 73
            iload 1 /* canonical */
            ifeq 5
         1: .line 74
            new java.lang.String
            dup
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            invokespecial java.lang.String.<init>:([C)V
            astore 2 /* text */
        start local 2 // java.lang.String text
         2: .line 75
            aload 0 /* this */
            getfield freemarker.core.TextBlock.unparsed:Z
            ifeq 4
         3: .line 76
            new java.lang.StringBuilder
            dup
            ldc "<#noparse>"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* text */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "</#noparse>"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         4: .line 78
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* text */
            areturn
        end local 2 // java.lang.String text
         5: .line 80
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "text "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            new java.lang.String
            dup
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            invokespecial java.lang.String.<init>:([C)V
            invokestatic freemarker.template.utility.StringUtil.jQuote:(Ljava/lang/String;)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // boolean canonical
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lfreemarker/core/TextBlock;
            0    6     1  canonical  Z
            2    5     2       text  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      canonical  

  java.lang.String getNodeTypeSymbol();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 86
            ldc "#text"
            areturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/core/TextBlock;

  int getParameterCount();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 91
            iconst_1
            ireturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/core/TextBlock;

  java.lang.Object getParameterValue(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // int idx
         0: .line 96
            iload 1 /* idx */
            ifeq 1
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         1: .line 97
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            invokespecial java.lang.String.<init>:([C)V
            areturn
        end local 1 // int idx
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/core/TextBlock;
            0    2     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  freemarker.core.ParameterRole getParameterRole(int);
    descriptor: (I)Lfreemarker/core/ParameterRole;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // int idx
         0: .line 102
            iload 1 /* idx */
            ifeq 1
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         1: .line 103
      StackMap locals:
      StackMap stack:
            getstatic freemarker.core.ParameterRole.CONTENT:Lfreemarker/core/ParameterRole;
            areturn
        end local 1 // int idx
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/core/TextBlock;
            0    2     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  freemarker.core.TemplateElement postParseCleanup(boolean);
    descriptor: (Z)Lfreemarker/core/TemplateElement;
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // boolean stripWhitespace
         0: .line 108
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            ifne 1
            aload 0 /* this */
            areturn
         1: .line 109
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* openingCharsToStrip */
        start local 2 // int openingCharsToStrip
         2: iconst_0
            istore 3 /* trailingCharsToStrip */
        start local 3 // int trailingCharsToStrip
         3: .line 110
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.deliberateLeftTrim:()Z
            istore 4 /* deliberateLeftTrim */
        start local 4 // boolean deliberateLeftTrim
         4: .line 111
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.deliberateRightTrim:()Z
            istore 5 /* deliberateRightTrim */
        start local 5 // boolean deliberateRightTrim
         5: .line 112
            iload 1 /* stripWhitespace */
            ifeq 6
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            ifne 7
         6: .line 113
      StackMap locals: freemarker.core.TextBlock int int int int int
      StackMap stack:
            aload 0 /* this */
            areturn
         7: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.getParentElement:()Lfreemarker/core/TemplateElement;
            astore 6 /* parentElement */
        start local 6 // freemarker.core.TemplateElement parentElement
         8: .line 116
            aload 0 /* this */
            aload 6 /* parentElement */
            invokevirtual freemarker.core.TextBlock.isTopLevelTextIfParentIs:(Lfreemarker/core/TemplateElement;)Z
            ifeq 10
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.previousSibling:()Lfreemarker/core/TemplateElement;
            ifnonnull 10
         9: .line 117
            aload 0 /* this */
            areturn
        10: .line 119
      StackMap locals: freemarker.core.TemplateElement
      StackMap stack:
            iload 4 /* deliberateLeftTrim */
            ifne 12
        11: .line 120
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.trailingCharsToStrip:()I
            istore 3 /* trailingCharsToStrip */
        12: .line 122
      StackMap locals:
      StackMap stack:
            iload 5 /* deliberateRightTrim */
            ifne 14
        13: .line 123
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.openingCharsToStrip:()I
            istore 2 /* openingCharsToStrip */
        14: .line 125
      StackMap locals:
      StackMap stack:
            iload 2 /* openingCharsToStrip */
            ifne 16
            iload 3 /* trailingCharsToStrip */
            ifne 16
        15: .line 126
            aload 0 /* this */
            areturn
        16: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 2 /* openingCharsToStrip */
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            iload 3 /* trailingCharsToStrip */
            isub
            invokestatic freemarker.core.TextBlock.substring:([CII)[C
            putfield freemarker.core.TextBlock.text:[C
        17: .line 129
            iload 2 /* openingCharsToStrip */
            ifle 20
        18: .line 130
            aload 0 /* this */
            dup
            getfield freemarker.core.TextBlock.beginLine:I
            iconst_1
            iadd
            putfield freemarker.core.TextBlock.beginLine:I
        19: .line 131
            aload 0 /* this */
            iconst_1
            putfield freemarker.core.TextBlock.beginColumn:I
        20: .line 133
      StackMap locals:
      StackMap stack:
            iload 3 /* trailingCharsToStrip */
            ifle 22
        21: .line 134
            aload 0 /* this */
            iconst_0
            putfield freemarker.core.TextBlock.endColumn:I
        22: .line 136
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 6 // freemarker.core.TemplateElement parentElement
        end local 5 // boolean deliberateRightTrim
        end local 4 // boolean deliberateLeftTrim
        end local 3 // int trailingCharsToStrip
        end local 2 // int openingCharsToStrip
        end local 1 // boolean stripWhitespace
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   23     0                  this  Lfreemarker/core/TextBlock;
            0   23     1       stripWhitespace  Z
            2   23     2   openingCharsToStrip  I
            3   23     3  trailingCharsToStrip  I
            4   23     4    deliberateLeftTrim  Z
            5   23     5   deliberateRightTrim  Z
            8   23     6         parentElement  Lfreemarker/core/TemplateElement;
    MethodParameters:
                 Name  Flags
      stripWhitespace  

  private boolean deliberateLeftTrim();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 144
            iconst_0
            istore 1 /* result */
        start local 1 // boolean result
         1: .line 145
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        start local 2 // freemarker.core.TemplateElement elem
         2: .line 146
            goto 24
         3: .line 148
      StackMap locals: int freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            instanceof freemarker.core.TrimInstruction
            ifeq 23
         4: .line 149
            aload 2 /* elem */
            checkcast freemarker.core.TrimInstruction
            astore 3 /* ti */
        start local 3 // freemarker.core.TrimInstruction ti
         5: .line 150
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.left:Z
            ifne 7
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.right:Z
            ifne 7
         6: .line 151
            iconst_1
            istore 1 /* result */
         7: .line 153
      StackMap locals: freemarker.core.TrimInstruction
      StackMap stack:
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.left:Z
            ifeq 23
         8: .line 154
            iconst_1
            istore 1 /* result */
         9: .line 155
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.lastNewLineIndex:()I
            istore 4 /* lastNewLineIndex */
        start local 4 // int lastNewLineIndex
        10: .line 156
            iload 4 /* lastNewLineIndex */
            ifge 11
            aload 0 /* this */
            getfield freemarker.core.TextBlock.beginColumn:I
            iconst_1
            if_icmpne 23
        11: .line 157
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iconst_0
            iload 4 /* lastNewLineIndex */
            iconst_1
            iadd
            invokestatic freemarker.core.TextBlock.substring:([CII)[C
            astore 5 /* firstPart */
        start local 5 // char[] firstPart
        12: .line 158
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iconst_1
            iload 4 /* lastNewLineIndex */
            iadd
            invokestatic freemarker.core.TextBlock.substring:([CI)[C
            astore 6 /* lastLine */
        start local 6 // char[] lastLine
        13: .line 159
            aload 6 /* lastLine */
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([C)Z
            ifeq 17
        14: .line 160
            aload 0 /* this */
            aload 5 /* firstPart */
            putfield freemarker.core.TextBlock.text:[C
        15: .line 161
            aload 0 /* this */
            iconst_0
            putfield freemarker.core.TextBlock.endColumn:I
        16: .line 162
            goto 23
        17: .line 163
      StackMap locals: char[] char[]
      StackMap stack:
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        18: .line 164
            goto 20
        19: .line 165
      StackMap locals: int
      StackMap stack:
            iinc 7 /* i */ 1
        20: .line 164
      StackMap locals:
      StackMap stack:
            aload 6 /* lastLine */
            iload 7 /* i */
            caload
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 19
        21: .line 167
            aload 6 /* lastLine */
            iload 7 /* i */
            invokestatic freemarker.core.TextBlock.substring:([CI)[C
            astore 8 /* printablePart */
        start local 8 // char[] printablePart
        22: .line 168
            aload 0 /* this */
            aload 5 /* firstPart */
            aload 8 /* printablePart */
            invokestatic freemarker.core.TextBlock.concat:([C[C)[C
            putfield freemarker.core.TextBlock.text:[C
        end local 8 // char[] printablePart
        end local 7 // int i
        end local 6 // char[] lastLine
        end local 5 // char[] firstPart
        end local 4 // int lastNewLineIndex
        end local 3 // freemarker.core.TrimInstruction ti
        23: .line 147
      StackMap locals: freemarker.core.TextBlock int freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        24: .line 146
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnull 25
            aload 2 /* elem */
            getfield freemarker.core.TemplateElement.beginLine:I
            aload 0 /* this */
            getfield freemarker.core.TextBlock.endLine:I
            if_icmpeq 3
        end local 2 // freemarker.core.TemplateElement elem
        25: .line 174
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 1 // boolean result
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   26     0              this  Lfreemarker/core/TextBlock;
            1   26     1            result  Z
            2   25     2              elem  Lfreemarker/core/TemplateElement;
            5   23     3                ti  Lfreemarker/core/TrimInstruction;
           10   23     4  lastNewLineIndex  I
           12   23     5         firstPart  [C
           13   23     6          lastLine  [C
           18   23     7                 i  I
           22   23     8     printablePart  [C

  private boolean deliberateRightTrim();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=11, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 182
            iconst_0
            istore 1 /* result */
        start local 1 // boolean result
         1: .line 183
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.prevTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        start local 2 // freemarker.core.TemplateElement elem
         2: .line 184
            goto 42
         3: .line 186
      StackMap locals: int freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            instanceof freemarker.core.TrimInstruction
            ifeq 41
         4: .line 187
            aload 2 /* elem */
            checkcast freemarker.core.TrimInstruction
            astore 3 /* ti */
        start local 3 // freemarker.core.TrimInstruction ti
         5: .line 188
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.left:Z
            ifne 7
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.right:Z
            ifne 7
         6: .line 189
            iconst_1
            istore 1 /* result */
         7: .line 191
      StackMap locals: freemarker.core.TrimInstruction
      StackMap stack:
            aload 3 /* ti */
            getfield freemarker.core.TrimInstruction.right:Z
            ifeq 41
         8: .line 192
            iconst_1
            istore 1 /* result */
         9: .line 193
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.firstNewLineIndex:()I
            iconst_1
            iadd
            istore 4 /* firstLineIndex */
        start local 4 // int firstLineIndex
        10: .line 194
            iload 4 /* firstLineIndex */
            ifne 12
        11: .line 195
            iconst_0
            ireturn
        12: .line 197
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            iload 4 /* firstLineIndex */
            if_icmple 16
        13: .line 198
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 4 /* firstLineIndex */
            iconst_1
            isub
            caload
            bipush 13
            if_icmpne 16
        14: .line 199
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 4 /* firstLineIndex */
            caload
            bipush 10
            if_icmpne 16
        15: .line 200
            iinc 4 /* firstLineIndex */ 1
        16: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 4 /* firstLineIndex */
            invokestatic freemarker.core.TextBlock.substring:([CI)[C
            astore 5 /* trailingPart */
        start local 5 // char[] trailingPart
        17: .line 203
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iconst_0
            iload 4 /* firstLineIndex */
            invokestatic freemarker.core.TextBlock.substring:([CII)[C
            astore 6 /* openingPart */
        start local 6 // char[] openingPart
        18: .line 204
            aload 6 /* openingPart */
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([C)Z
            ifeq 23
        19: .line 205
            aload 0 /* this */
            aload 5 /* trailingPart */
            putfield freemarker.core.TextBlock.text:[C
        20: .line 206
            aload 0 /* this */
            dup
            getfield freemarker.core.TextBlock.beginLine:I
            iconst_1
            iadd
            putfield freemarker.core.TextBlock.beginLine:I
        21: .line 207
            aload 0 /* this */
            iconst_1
            putfield freemarker.core.TextBlock.beginColumn:I
        22: .line 208
            goto 41
        23: .line 209
      StackMap locals: char[] char[]
      StackMap stack:
            aload 6 /* openingPart */
            arraylength
            iconst_1
            isub
            istore 7 /* lastNonWS */
        start local 7 // int lastNonWS
        24: .line 210
            goto 26
        25: .line 211
      StackMap locals: int
      StackMap stack:
            iinc 7 /* lastNonWS */ -1
        26: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 7 /* lastNonWS */
            caload
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 25
        27: .line 213
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iconst_0
            iload 7 /* lastNonWS */
            iconst_1
            iadd
            invokestatic freemarker.core.TextBlock.substring:([CII)[C
            astore 8 /* printablePart */
        start local 8 // char[] printablePart
        28: .line 214
            aload 5 /* trailingPart */
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([C)Z
            ifeq 40
        29: .line 216
            iconst_1
            istore 9 /* trimTrailingPart */
        start local 9 // boolean trimTrailingPart
        30: .line 217
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 10 /* te */
        start local 10 // freemarker.core.TemplateElement te
        31: .line 218
            goto 38
        32: .line 220
      StackMap locals: char[] int freemarker.core.TemplateElement
      StackMap stack:
            aload 10 /* te */
            invokevirtual freemarker.core.TemplateElement.heedsOpeningWhitespace:()Z
            ifeq 34
        33: .line 221
            iconst_0
            istore 9 /* trimTrailingPart */
        34: .line 223
      StackMap locals:
      StackMap stack:
            aload 10 /* te */
            instanceof freemarker.core.TrimInstruction
            ifeq 37
            aload 10 /* te */
            checkcast freemarker.core.TrimInstruction
            getfield freemarker.core.TrimInstruction.left:Z
            ifeq 37
        35: .line 224
            iconst_1
            istore 9 /* trimTrailingPart */
        36: .line 225
            goto 39
        37: .line 219
      StackMap locals:
      StackMap stack:
            aload 10 /* te */
            invokevirtual freemarker.core.TemplateElement.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 10 /* te */
        38: .line 218
      StackMap locals:
      StackMap stack:
            aload 10 /* te */
            ifnull 39
            aload 10 /* te */
            getfield freemarker.core.TemplateElement.beginLine:I
            aload 0 /* this */
            getfield freemarker.core.TextBlock.endLine:I
            if_icmpeq 32
        end local 10 // freemarker.core.TemplateElement te
        39: .line 228
      StackMap locals:
      StackMap stack:
            iload 9 /* trimTrailingPart */
            ifeq 40
            getstatic freemarker.template.utility.CollectionUtils.EMPTY_CHAR_ARRAY:[C
            astore 5 /* trailingPart */
        end local 9 // boolean trimTrailingPart
        40: .line 230
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 8 /* printablePart */
            aload 5 /* trailingPart */
            invokestatic freemarker.core.TextBlock.concat:([C[C)[C
            putfield freemarker.core.TextBlock.text:[C
        end local 8 // char[] printablePart
        end local 7 // int lastNonWS
        end local 6 // char[] openingPart
        end local 5 // char[] trailingPart
        end local 4 // int firstLineIndex
        end local 3 // freemarker.core.TrimInstruction ti
        41: .line 185
      StackMap locals: freemarker.core.TextBlock int freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.prevTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        42: .line 184
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnull 43
            aload 2 /* elem */
            getfield freemarker.core.TemplateElement.endLine:I
            aload 0 /* this */
            getfield freemarker.core.TextBlock.beginLine:I
            if_icmpeq 3
        end local 2 // freemarker.core.TemplateElement elem
        43: .line 235
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 1 // boolean result
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   44     0              this  Lfreemarker/core/TextBlock;
            1   44     1            result  Z
            2   43     2              elem  Lfreemarker/core/TemplateElement;
            5   41     3                ti  Lfreemarker/core/TrimInstruction;
           10   41     4    firstLineIndex  I
           17   41     5      trailingPart  [C
           18   41     6       openingPart  [C
           24   41     7         lastNonWS  I
           28   41     8     printablePart  [C
           30   40     9  trimTrailingPart  Z
           31   39    10                te  Lfreemarker/core/TemplateElement;

  private int firstNewLineIndex();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 239
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            astore 1 /* text */
        start local 1 // char[] text
         1: .line 240
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 241
      StackMap locals: char[] int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* i */
            caload
            istore 3 /* c */
        start local 3 // char c
         4: .line 242
            iload 3 /* c */
            bipush 13
            if_icmpeq 5
            iload 3 /* c */
            bipush 10
            if_icmpne 6
         5: .line 243
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            ireturn
        end local 3 // char c
         6: .line 240
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 1 /* text */
            arraylength
            if_icmplt 3
        end local 2 // int i
         8: .line 246
            iconst_m1
            ireturn
        end local 1 // char[] text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lfreemarker/core/TextBlock;
            1    9     1  text  [C
            2    8     2     i  I
            4    6     3     c  C

  private int lastNewLineIndex();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 250
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            astore 1 /* text */
        start local 1 // char[] text
         1: .line 251
            aload 1 /* text */
            arraylength
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 252
      StackMap locals: char[] int
      StackMap stack:
            aload 1 /* text */
            iload 2 /* i */
            caload
            istore 3 /* c */
        start local 3 // char c
         4: .line 253
            iload 3 /* c */
            bipush 13
            if_icmpeq 5
            iload 3 /* c */
            bipush 10
            if_icmpne 6
         5: .line 254
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            ireturn
        end local 3 // char c
         6: .line 251
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            ifge 3
        end local 2 // int i
         8: .line 257
            iconst_m1
            ireturn
        end local 1 // char[] text
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lfreemarker/core/TextBlock;
            1    9     1  text  [C
            2    8     2     i  I
            4    6     3     c  C

  private int openingCharsToStrip();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 265
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.firstNewLineIndex:()I
            istore 1 /* newlineIndex */
        start local 1 // int newlineIndex
         1: .line 266
            iload 1 /* newlineIndex */
            iconst_m1
            if_icmpne 3
            aload 0 /* this */
            getfield freemarker.core.TextBlock.beginColumn:I
            iconst_1
            if_icmpeq 3
         2: .line 267
            iconst_0
            ireturn
         3: .line 269
      StackMap locals: int
      StackMap stack:
            iinc 1 /* newlineIndex */ 1
         4: .line 270
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            iload 1 /* newlineIndex */
            if_icmple 7
         5: .line 271
            iload 1 /* newlineIndex */
            ifle 7
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 1 /* newlineIndex */
            iconst_1
            isub
            caload
            bipush 13
            if_icmpne 7
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 1 /* newlineIndex */
            caload
            bipush 10
            if_icmpne 7
         6: .line 272
            iinc 1 /* newlineIndex */ 1
         7: .line 275
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iconst_0
            iload 1 /* newlineIndex */
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([CII)Z
            ifne 9
         8: .line 276
            iconst_0
            ireturn
         9: .line 280
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.prevTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        start local 2 // freemarker.core.TemplateElement elem
        10: .line 281
            goto 14
        11: .line 283
      StackMap locals: freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.heedsOpeningWhitespace:()Z
            ifeq 13
        12: .line 284
            iconst_0
            ireturn
        13: .line 282
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.prevTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        14: .line 281
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnull 15
            aload 2 /* elem */
            getfield freemarker.core.TemplateElement.endLine:I
            aload 0 /* this */
            getfield freemarker.core.TextBlock.beginLine:I
            if_icmpeq 11
        end local 2 // freemarker.core.TemplateElement elem
        15: .line 287
      StackMap locals:
      StackMap stack:
            iload 1 /* newlineIndex */
            ireturn
        end local 1 // int newlineIndex
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lfreemarker/core/TextBlock;
            1   16     1  newlineIndex  I
           10   15     2          elem  Lfreemarker/core/TemplateElement;

  private int trailingCharsToStrip();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 295
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.lastNewLineIndex:()I
            istore 1 /* lastNewlineIndex */
        start local 1 // int lastNewlineIndex
         1: .line 296
            iload 1 /* lastNewlineIndex */
            iconst_m1
            if_icmpne 3
            aload 0 /* this */
            getfield freemarker.core.TextBlock.beginColumn:I
            iconst_1
            if_icmpeq 3
         2: .line 297
            iconst_0
            ireturn
         3: .line 299
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 1 /* lastNewlineIndex */
            iconst_1
            iadd
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([CI)Z
            ifne 5
         4: .line 300
            iconst_0
            ireturn
         5: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        start local 2 // freemarker.core.TemplateElement elem
         6: .line 305
            goto 10
         7: .line 307
      StackMap locals: freemarker.core.TemplateElement
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.heedsTrailingWhitespace:()Z
            ifeq 9
         8: .line 308
            iconst_0
            ireturn
         9: .line 306
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            invokevirtual freemarker.core.TemplateElement.nextTerminalNode:()Lfreemarker/core/TemplateElement;
            astore 2 /* elem */
        10: .line 305
      StackMap locals:
      StackMap stack:
            aload 2 /* elem */
            ifnull 11
            aload 2 /* elem */
            getfield freemarker.core.TemplateElement.beginLine:I
            aload 0 /* this */
            getfield freemarker.core.TextBlock.endLine:I
            if_icmpeq 7
        end local 2 // freemarker.core.TemplateElement elem
        11: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            iload 1 /* lastNewlineIndex */
            iconst_1
            iadd
            isub
            ireturn
        end local 1 // int lastNewlineIndex
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lfreemarker/core/TextBlock;
            1   12     1  lastNewlineIndex  I
            6   11     2              elem  Lfreemarker/core/TemplateElement;

  boolean heedsTrailingWhitespace();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 316
            aload 0 /* this */
            iconst_1
            invokevirtual freemarker.core.TextBlock.isIgnorable:(Z)Z
            ifeq 2
         1: .line 317
            iconst_0
            ireturn
         2: .line 319
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         3: goto 10
         4: .line 320
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 1 /* i */
            caload
            istore 2 /* c */
        start local 2 // char c
         5: .line 321
            iload 2 /* c */
            bipush 10
            if_icmpeq 6
            iload 2 /* c */
            bipush 13
            if_icmpne 7
         6: .line 322
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
         7: .line 324
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 9
         8: .line 325
            iconst_1
            ireturn
        end local 2 // char c
         9: .line 319
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* i */
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            if_icmplt 4
        end local 1 // int i
        11: .line 328
            iconst_1
            ireturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lfreemarker/core/TextBlock;
            3   11     1     i  I
            5    9     2     c  C

  boolean heedsOpeningWhitespace();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 333
            aload 0 /* this */
            iconst_1
            invokevirtual freemarker.core.TextBlock.isIgnorable:(Z)Z
            ifeq 2
         1: .line 334
            iconst_0
            ireturn
         2: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         3: goto 10
         4: .line 337
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            iload 1 /* i */
            caload
            istore 2 /* c */
        start local 2 // char c
         5: .line 338
            iload 2 /* c */
            bipush 10
            if_icmpeq 6
            iload 2 /* c */
            bipush 13
            if_icmpne 7
         6: .line 339
      StackMap locals: int
      StackMap stack:
            iconst_0
            ireturn
         7: .line 341
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 9
         8: .line 342
            iconst_1
            ireturn
        end local 2 // char c
         9: .line 336
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
        10: iload 1 /* i */
            ifge 4
        end local 1 // int i
        11: .line 345
            iconst_1
            ireturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lfreemarker/core/TextBlock;
            3   11     1     i  I
            5    9     2     c  C

  boolean isIgnorable(boolean);
    descriptor: (Z)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // boolean stripWhitespace
         0: .line 350
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            ifnull 1
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            arraylength
            ifne 2
         1: .line 351
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 353
      StackMap locals:
      StackMap stack:
            iload 1 /* stripWhitespace */
            ifeq 15
         3: .line 354
            aload 0 /* this */
            getfield freemarker.core.TextBlock.text:[C
            invokestatic freemarker.template.utility.StringUtil.isTrimmableToEmpty:([C)Z
            ifne 5
         4: .line 355
            iconst_0
            ireturn
         5: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.getParentElement:()Lfreemarker/core/TemplateElement;
            astore 2 /* parentElement */
        start local 2 // freemarker.core.TemplateElement parentElement
         6: .line 358
            aload 0 /* this */
            aload 2 /* parentElement */
            invokevirtual freemarker.core.TextBlock.isTopLevelTextIfParentIs:(Lfreemarker/core/TemplateElement;)Z
            istore 3 /* atTopLevel */
        start local 3 // boolean atTopLevel
         7: .line 359
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.previousSibling:()Lfreemarker/core/TemplateElement;
            astore 4 /* prevSibling */
        start local 4 // freemarker.core.TemplateElement prevSibling
         8: .line 360
            aload 0 /* this */
            invokevirtual freemarker.core.TextBlock.nextSibling:()Lfreemarker/core/TemplateElement;
            astore 5 /* nextSibling */
        start local 5 // freemarker.core.TemplateElement nextSibling
         9: .line 361
            aload 4 /* prevSibling */
            ifnonnull 10
            iload 3 /* atTopLevel */
            ifne 11
      StackMap locals: freemarker.core.TextBlock int freemarker.core.TemplateElement int freemarker.core.TemplateElement freemarker.core.TemplateElement
      StackMap stack:
        10: aload 0 /* this */
            aload 4 /* prevSibling */
            invokevirtual freemarker.core.TextBlock.nonOutputtingType:(Lfreemarker/core/TemplateElement;)Z
            ifeq 14
        11: .line 362
      StackMap locals:
      StackMap stack:
            aload 5 /* nextSibling */
            ifnonnull 12
            iload 3 /* atTopLevel */
            ifne 13
      StackMap locals:
      StackMap stack:
        12: aload 0 /* this */
            aload 5 /* nextSibling */
            invokevirtual freemarker.core.TextBlock.nonOutputtingType:(Lfreemarker/core/TemplateElement;)Z
            ifeq 14
        13: .line 361
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        14: iconst_0
            ireturn
        end local 5 // freemarker.core.TemplateElement nextSibling
        end local 4 // freemarker.core.TemplateElement prevSibling
        end local 3 // boolean atTopLevel
        end local 2 // freemarker.core.TemplateElement parentElement
        15: .line 364
      StackMap locals: freemarker.core.TextBlock int
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // boolean stripWhitespace
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Lfreemarker/core/TextBlock;
            0   16     1  stripWhitespace  Z
            6   15     2    parentElement  Lfreemarker/core/TemplateElement;
            7   15     3       atTopLevel  Z
            8   15     4      prevSibling  Lfreemarker/core/TemplateElement;
            9   15     5      nextSibling  Lfreemarker/core/TemplateElement;
    MethodParameters:
                 Name  Flags
      stripWhitespace  

  private boolean isTopLevelTextIfParentIs(freemarker.core.TemplateElement);
    descriptor: (Lfreemarker/core/TemplateElement;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // freemarker.core.TemplateElement parentElement
         0: .line 369
            aload 1 /* parentElement */
            ifnull 3
         1: .line 370
            aload 1 /* parentElement */
            invokevirtual freemarker.core.TemplateElement.getParentElement:()Lfreemarker/core/TemplateElement;
            ifnonnull 2
            aload 1 /* parentElement */
            instanceof freemarker.core.MixedContent
            ifne 3
         2: .line 369
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 1 // freemarker.core.TemplateElement parentElement
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lfreemarker/core/TextBlock;
            0    4     1  parentElement  Lfreemarker/core/TemplateElement;
    MethodParameters:
               Name  Flags
      parentElement  

  private boolean nonOutputtingType(freemarker.core.TemplateElement);
    descriptor: (Lfreemarker/core/TemplateElement;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // freemarker.core.TextBlock this
        start local 1 // freemarker.core.TemplateElement element
         0: .line 375
            aload 1 /* element */
            instanceof freemarker.core.Macro
            ifne 7
         1: .line 376
            aload 1 /* element */
            instanceof freemarker.core.Assignment
            ifne 7
         2: .line 377
            aload 1 /* element */
            instanceof freemarker.core.AssignmentInstruction
            ifne 7
         3: .line 378
            aload 1 /* element */
            instanceof freemarker.core.PropertySetting
            ifne 7
         4: .line 379
            aload 1 /* element */
            instanceof freemarker.core.LibraryLoad
            ifne 7
         5: .line 380
            aload 1 /* element */
            instanceof freemarker.core.Comment
            ifne 7
         6: .line 375
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_1
            ireturn
        end local 1 // freemarker.core.TemplateElement element
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lfreemarker/core/TextBlock;
            0    8     1  element  Lfreemarker/core/TemplateElement;
    MethodParameters:
         Name  Flags
      element  

  private static char[] substring(char[], int, int);
    descriptor: ([CII)[C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // char[] c
        start local 1 // int from
        start local 2 // int to
         0: .line 384
            iload 2 /* to */
            iload 1 /* from */
            isub
            newarray 5
            astore 3 /* c2 */
        start local 3 // char[] c2
         1: .line 385
            aload 0 /* c */
            iload 1 /* from */
            aload 3 /* c2 */
            iconst_0
            aload 3 /* c2 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 386
            aload 3 /* c2 */
            areturn
        end local 3 // char[] c2
        end local 2 // int to
        end local 1 // int from
        end local 0 // char[] c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     c  [C
            0    3     1  from  I
            0    3     2    to  I
            1    3     3    c2  [C
    MethodParameters:
      Name  Flags
      c     
      from  
      to    

  private static char[] substring(char[], int);
    descriptor: ([CI)[C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // char[] c
        start local 1 // int from
         0: .line 390
            aload 0 /* c */
            iload 1 /* from */
            aload 0 /* c */
            arraylength
            invokestatic freemarker.core.TextBlock.substring:([CII)[C
            areturn
        end local 1 // int from
        end local 0 // char[] c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     c  [C
            0    1     1  from  I
    MethodParameters:
      Name  Flags
      c     
      from  

  private static char[] concat(char[], char[]);
    descriptor: ([C[C)[C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // char[] c1
        start local 1 // char[] c2
         0: .line 394
            aload 0 /* c1 */
            arraylength
            aload 1 /* c2 */
            arraylength
            iadd
            newarray 5
            astore 2 /* c */
        start local 2 // char[] c
         1: .line 395
            aload 0 /* c1 */
            iconst_0
            aload 2 /* c */
            iconst_0
            aload 0 /* c1 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 396
            aload 1 /* c2 */
            iconst_0
            aload 2 /* c */
            aload 0 /* c1 */
            arraylength
            aload 1 /* c2 */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 397
            aload 2 /* c */
            areturn
        end local 2 // char[] c
        end local 1 // char[] c2
        end local 0 // char[] c1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0    c1  [C
            0    4     1    c2  [C
            1    4     2     c  [C
    MethodParameters:
      Name  Flags
      c1    
      c2    

  boolean isOutputCacheable();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 402
            iconst_1
            ireturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/core/TextBlock;

  boolean isNestedBlockRepeater();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.core.TextBlock this
         0: .line 407
            iconst_0
            ireturn
        end local 0 // freemarker.core.TextBlock this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/core/TextBlock;
}
SourceFile: "TextBlock.java"