class org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer
  super_class: java.lang.Object
{
  final java.lang.String expression;
    descriptor: Ljava/lang/String;
    flags: (0x0010) ACC_FINAL

  int idx;
    descriptor: I
    flags: (0x0000) 

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
        start local 1 // java.lang.String expression
         0: .line 66
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            aload 1 /* expression */
            putfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
         2: .line 69
            return
        end local 1 // java.lang.String expression
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;
            0    3     1  expression  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      expression  

  public int peekChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
         0: .line 73
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 1
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.charAt:(I)C
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;

  public int skipChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
         0: .line 78
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 1
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            aload 0 /* this */
            dup
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            dup_x1
            iconst_1
            iadd
            putfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.charAt:(I)C
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;

  public java.lang.String nextToken(char);
    descriptor: (C)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
        start local 1 // char delimiter
         0: .line 83
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            istore 2 /* start */
        start local 2 // int start
         1: .line 85
            goto 3
         2: .line 87
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            iconst_1
            iadd
            putfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
         3: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 4
            iload 1 /* delimiter */
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.charAt:(I)C
            if_icmpne 2
         4: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            iload 2 /* start */
            if_icmple 5
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmplt 6
         5: .line 93
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         6: .line 96
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            iload 2 /* start */
            aload 0 /* this */
            dup
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            dup_x1
            iconst_1
            iadd
            putfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            areturn
        end local 2 // int start
        end local 1 // char delimiter
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;
            0    7     1  delimiter  C
            1    7     2      start  I
    MethodParameters:
           Name  Flags
      delimiter  

  public java.lang.String nextPropertyName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
         0: .line 101
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            istore 1 /* start */
        start local 1 // int start
         1: .line 103
            goto 3
         2: .line 105
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            iconst_1
            iadd
            putfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
         3: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 4
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic java.lang.Character.isJavaIdentifierPart:(C)Z
            ifne 2
         4: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            iload 1 /* start */
            if_icmple 5
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmple 6
         5: .line 111
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         6: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            iload 1 /* start */
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            areturn
        end local 1 // int start
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;
            1    7     1  start  I

  public int getPosition();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
         0: .line 119
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 1
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
         0: .line 126
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            if_icmpge 1
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.expression:Ljava/lang/String;
            aload 0 /* this */
            getfield org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer.idx:I
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc "<EOF>"
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/codehaus/plexus/interpolation/reflection/ReflectionValueExtractor$Tokenizer;
}
SourceFile: "ReflectionValueExtractor.java"
NestHost: org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor
InnerClasses:
  Tokenizer = org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor$Tokenizer of org.codehaus.plexus.interpolation.reflection.ReflectionValueExtractor