class org.springframework.web.util.pattern.SubSequence implements java.lang.CharSequence
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.springframework.web.util.pattern.SubSequence
  super_class: java.lang.Object
{
  private final char[] chars;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int start;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int end;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.springframework.web.util.pattern.SubSequence this
        start local 1 // char[] chars
        start local 2 // int start
        start local 3 // int end
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            aload 1 /* chars */
            putfield org.springframework.web.util.pattern.SubSequence.chars:[C
         2: .line 38
            aload 0 /* this */
            iload 2 /* start */
            putfield org.springframework.web.util.pattern.SubSequence.start:I
         3: .line 39
            aload 0 /* this */
            iload 3 /* end */
            putfield org.springframework.web.util.pattern.SubSequence.end:I
         4: .line 40
            return
        end local 3 // int end
        end local 2 // int start
        end local 1 // char[] chars
        end local 0 // org.springframework.web.util.pattern.SubSequence this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/springframework/web/util/pattern/SubSequence;
            0    5     1  chars  [C
            0    5     2  start  I
            0    5     3    end  I
    MethodParameters:
       Name  Flags
      chars  
      start  
      end    

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.util.pattern.SubSequence this
         0: .line 45
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.end:I
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            isub
            ireturn
        end local 0 // org.springframework.web.util.pattern.SubSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/util/pattern/SubSequence;

  public char charAt(int);
    descriptor: (I)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.web.util.pattern.SubSequence this
        start local 1 // int index
         0: .line 50
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.chars:[C
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            iload 1 /* index */
            iadd
            caload
            ireturn
        end local 1 // int index
        end local 0 // org.springframework.web.util.pattern.SubSequence this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/web/util/pattern/SubSequence;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.lang.CharSequence subSequence(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.springframework.web.util.pattern.SubSequence this
        start local 1 // int start
        start local 2 // int end
         0: .line 55
            new org.springframework.web.util.pattern.SubSequence
            dup
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.chars:[C
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            iload 1 /* start */
            iadd
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            iload 2 /* end */
            iadd
            invokespecial org.springframework.web.util.pattern.SubSequence.<init>:([CII)V
            areturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.springframework.web.util.pattern.SubSequence this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/springframework/web/util/pattern/SubSequence;
            0    1     1  start  I
            0    1     2    end  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.springframework.web.util.pattern.SubSequence this
         0: .line 61
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.chars:[C
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.end:I
            aload 0 /* this */
            getfield org.springframework.web.util.pattern.SubSequence.start:I
            isub
            invokespecial java.lang.String.<init>:([CII)V
            areturn
        end local 0 // org.springframework.web.util.pattern.SubSequence this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/util/pattern/SubSequence;
}
SourceFile: "SubSequence.java"