public class io.ebeaninternal.server.querydefn.SimpleTextParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.querydefn.SimpleTextParser
  super_class: java.lang.Object
{
  private final java.lang.String oql;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final char[] chars;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private java.lang.String word;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String lowerWord;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  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 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // java.lang.String oql
         0: .line 13
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 14
            aload 0 /* this */
            aload 1 /* oql */
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.oql:Ljava/lang/String;
         2: .line 15
            aload 0 /* this */
            aload 1 /* oql */
            invokevirtual java.lang.String.toCharArray:()[C
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
         3: .line 16
            aload 0 /* this */
            aload 1 /* oql */
            invokevirtual java.lang.String.length:()I
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.eof:I
         4: .line 17
            return
        end local 1 // java.lang.String oql
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    5     1   oql  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      oql   

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 20
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.oql:Ljava/lang/String;
            invokevirtual java.lang.String.isEmpty:()Z
            ireturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  public int getPos();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 24
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            ireturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  java.lang.String getOql();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 28
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.oql:Ljava/lang/String;
            areturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  public java.lang.String getWord();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 32
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
            areturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  private java.lang.String peekNextWord();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 36
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            istore 1 /* origPos */
        start local 1 // int origPos
         1: .line 37
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.nextWordInternal:()Ljava/lang/String;
            astore 2 /* nw */
        start local 2 // java.lang.String nw
         2: .line 38
            aload 0 /* this */
            iload 1 /* origPos */
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
         3: .line 39
            aload 2 /* nw */
            areturn
        end local 2 // java.lang.String nw
        end local 1 // int origPos
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            1    4     1  origPos  I
            2    4     2       nw  Ljava/lang/String;

  public boolean isMatch(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // java.lang.String lowerMatch
        start local 2 // java.lang.String nextWordMatch
         0: .line 47
            aload 0 /* this */
            aload 1 /* lowerMatch */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.isMatch:(Ljava/lang/String;)Z
            ifeq 5
         1: .line 48
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.peekNextWord:()Ljava/lang/String;
            astore 3 /* nw */
        start local 3 // java.lang.String nw
         2: .line 49
            aload 3 /* nw */
            ifnull 5
         3: .line 50
            aload 3 /* nw */
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            astore 3 /* nw */
         4: .line 51
            aload 3 /* nw */
            aload 2 /* nextWordMatch */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 3 // java.lang.String nw
         5: .line 54
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.lang.String nextWordMatch
        end local 1 // java.lang.String lowerMatch
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    6     1     lowerMatch  Ljava/lang/String;
            0    6     2  nextWordMatch  Ljava/lang/String;
            2    5     3             nw  Ljava/lang/String;
    MethodParameters:
               Name  Flags
      lowerMatch     
      nextWordMatch  

  public boolean isFinished();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 58
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  public int findWordLower(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // java.lang.String lowerMatch
        start local 2 // int afterPos
         0: .line 62
            aload 0 /* this */
            iload 2 /* afterPos */
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
         1: .line 63
            aload 0 /* this */
            aload 1 /* lowerMatch */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.findWordLower:(Ljava/lang/String;)I
            ireturn
        end local 2 // int afterPos
        end local 1 // java.lang.String lowerMatch
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    2     1  lowerMatch  Ljava/lang/String;
            0    2     2    afterPos  I
    MethodParameters:
            Name  Flags
      lowerMatch  
      afterPos    

  public int findWordLower(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // java.lang.String lowerMatch
         0: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.nextWord:()Ljava/lang/String;
            ifnonnull 2
         1: .line 69
            iconst_m1
            ireturn
         2: .line 71
      StackMap locals:
      StackMap stack:
            aload 1 /* lowerMatch */
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.lowerWord:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 0
         3: .line 72
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.lowerWord:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            isub
            ireturn
        end local 1 // java.lang.String lowerMatch
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    4     1  lowerMatch  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      lowerMatch  

  public boolean isMatch(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // java.lang.String lowerMatch
         0: .line 81
            aload 1 /* lowerMatch */
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.lowerWord:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String lowerMatch
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    1     1  lowerMatch  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      lowerMatch  

  public java.lang.String nextWord();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 85
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.nextWordInternal:()Ljava/lang/String;
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
         1: .line 86
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
            ifnull 3
         2: .line 87
            aload 0 /* this */
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
            invokevirtual java.lang.String.toLowerCase:()Ljava/lang/String;
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.lowerWord:Ljava/lang/String;
         3: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.word:Ljava/lang/String;
            areturn
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;

  private java.lang.String nextWordInternal();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 93
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.trimLeadingWhitespace:()V
         1: .line 94
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.eof:I
            if_icmplt 3
         2: .line 95
            aconst_null
            areturn
         3: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            istore 1 /* start */
        start local 1 // int start
         4: .line 98
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            caload
            bipush 40
            if_icmpne 7
         5: .line 99
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.moveToClose:()V
         6: .line 100
            goto 8
         7: .line 101
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.moveToEndOfWord:()V
         8: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.oql:Ljava/lang/String;
            iload 1 /* start */
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            areturn
        end local 1 // int start
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            4    9     1  start  I

  private void moveToClose();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 108
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            iconst_1
            iadd
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
         1: .line 109
            iconst_0
            istore 1 /* openParenthesisCount */
        start local 1 // int openParenthesisCount
         2: .line 111
            goto 14
         3: .line 112
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            caload
            istore 2 /* c */
        start local 2 // char c
         4: .line 113
            iload 2 /* c */
            bipush 40
            if_icmpne 7
         5: .line 115
            iinc 1 /* openParenthesisCount */ 1
         6: .line 117
            goto 13
      StackMap locals: int
      StackMap stack:
         7: iload 2 /* c */
            bipush 41
            if_icmpne 13
         8: .line 118
            iload 1 /* openParenthesisCount */
            ifle 11
         9: .line 120
            iinc 1 /* openParenthesisCount */ -1
        10: .line 121
            goto 13
        11: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            iconst_1
            iadd
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
        12: .line 124
            return
        end local 2 // char c
        13: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            iconst_1
            iadd
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.eof:I
            if_icmplt 3
        15: .line 128
            return
        end local 1 // int openParenthesisCount
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   16     0                  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            2   16     1  openParenthesisCount  I
            4   13     2                     c  C

  private void moveToEndOfWord();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 131
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            caload
            istore 1 /* c */
        start local 1 // char c
         1: .line 132
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.isOperator:(C)Z
            istore 2 /* isOperator */
        start local 2 // boolean isOperator
         2: .line 133
            goto 7
         3: .line 134
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            caload
            istore 1 /* c */
         4: .line 135
            aload 0 /* this */
            iload 1 /* c */
            iload 2 /* isOperator */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.isWordTerminator:(CZ)Z
            ifeq 6
         5: .line 136
            return
         6: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            iconst_1
            iadd
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.eof:I
            if_icmplt 3
         8: .line 139
            return
        end local 2 // boolean isOperator
        end local 1 // char c
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            1    9     1           c  C
            2    9     2  isOperator  Z

  private boolean isWordTerminator(char, boolean);
    descriptor: (CZ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // char c
        start local 2 // boolean isOperator
         0: .line 142
            iload 1 /* c */
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 3
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual io.ebeaninternal.server.querydefn.SimpleTextParser.isOperator:(C)Z
            ifeq 1
            iload 2 /* isOperator */
            ifeq 3
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* c */
            bipush 40
            if_icmpeq 3
            iload 2 /* isOperator */
            ifne 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_1
            ireturn
        end local 2 // boolean isOperator
        end local 1 // char c
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    4     1           c  C
            0    4     2  isOperator  Z
    MethodParameters:
            Name  Flags
      c           
      isOperator  

  private boolean isOperator(char);
    descriptor: (C)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
        start local 1 // char c
         0: .line 146
            iload 1 /* c */
            lookupswitch { // 4
                   33: 4
                   60: 1
                   61: 3
                   62: 2
              default: 5
          }
         1: .line 148
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         2: .line 150
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         3: .line 152
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         4: .line 154
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         5: .line 157
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // char c
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            0    6     1     c  C
    MethodParameters:
      Name  Flags
      c     

  private void trimLeadingWhitespace();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
         0: .line 162
            goto 5
         1: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.chars:[C
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            caload
            istore 1 /* c */
        start local 1 // char c
         2: .line 164
            iload 1 /* c */
            invokestatic java.lang.Character.isWhitespace:(C)Z
            ifne 4
         3: .line 165
            goto 6
        end local 1 // char c
         4: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            iconst_1
            iadd
            putfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
      StackMap locals:
      StackMap stack:
         5: aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.pos:I
            aload 0 /* this */
            getfield io.ebeaninternal.server.querydefn.SimpleTextParser.eof:I
            if_icmplt 1
         6: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.ebeaninternal.server.querydefn.SimpleTextParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/ebeaninternal/server/querydefn/SimpleTextParser;
            2    4     1     c  C
}
SourceFile: "SimpleTextParser.java"