public final class jflex.core.NFA
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: jflex.core.NFA
  super_class: java.lang.Object
{
  private jflex.state.StateSet[][] table;
    descriptor: [[Ljflex/state/StateSet;
    flags: (0x0002) ACC_PRIVATE

  private jflex.state.StateSet[] epsilon;
    descriptor: [Ljflex/state/StateSet;
    flags: (0x0002) ACC_PRIVATE

  private boolean[] isFinal;
    descriptor: [Z
    flags: (0x0002) ACC_PRIVATE

  private jflex.core.Action[] action;
    descriptor: [Ljflex/core/Action;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  private jflex.core.unicode.CharClasses classes;
    descriptor: Ljflex/core/unicode/CharClasses;
    flags: (0x0002) ACC_PRIVATE

  private jflex.core.LexScan scanner;
    descriptor: Ljflex/core/LexScan;
    flags: (0x0002) ACC_PRIVATE

  private jflex.core.RegExps regExps;
    descriptor: Ljflex/core/RegExps;
    flags: (0x0002) ACC_PRIVATE

  private final jflex.state.StateSetEnumerator states;
    descriptor: Ljflex/state/StateSetEnumerator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final jflex.state.StateSet tempStateSet;
    descriptor: Ljflex/state/StateSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // int numInput
        start local 2 // int estSize
         0: .line 90
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 86
            aload 0 /* this */
            new jflex.state.StateSetEnumerator
            dup
            invokespecial jflex.state.StateSetEnumerator.<init>:()V
            putfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
         2: .line 87
            aload 0 /* this */
            new jflex.state.StateSet
            dup
            invokespecial jflex.state.StateSet.<init>:()V
            putfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
         3: .line 91
            aload 0 /* this */
            iload 1 /* numInput */
            putfield jflex.core.NFA.numInput:I
         4: .line 92
            aload 0 /* this */
            iload 2 /* estSize */
            putfield jflex.core.NFA.estSize:I
         5: .line 93
            aload 0 /* this */
            iconst_0
            putfield jflex.core.NFA.numStates:I
         6: .line 94
            aload 0 /* this */
            iload 2 /* estSize */
            anewarray jflex.state.StateSet
            putfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
         7: .line 95
            aload 0 /* this */
            iload 2 /* estSize */
            anewarray jflex.core.Action
            putfield jflex.core.NFA.action:[Ljflex/core/Action;
         8: .line 96
            aload 0 /* this */
            iload 2 /* estSize */
            newarray 4
            putfield jflex.core.NFA.isFinal:[Z
         9: .line 97
            aload 0 /* this */
            iload 2 /* estSize */
            iload 1 /* numInput */
            multianewarray [[Ljflex/state/StateSet; 2
            putfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
        10: .line 98
            return
        end local 2 // int estSize
        end local 1 // int numInput
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljflex/core/NFA;
            0   11     1  numInput  I
            0   11     2   estSize  I
    MethodParameters:
          Name  Flags
      numInput  
      estSize   

  public void <init>(int, jflex.core.LexScan, jflex.core.RegExps, jflex.core.Macros, jflex.core.unicode.CharClasses);
    descriptor: (ILjflex/core/LexScan;Ljflex/core/RegExps;Ljflex/core/Macros;Ljflex/core/unicode/CharClasses;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=6
        start local 0 // jflex.core.NFA this
        start local 1 // int numInput
        start local 2 // jflex.core.LexScan scanner
        start local 3 // jflex.core.RegExps regExps
        start local 4 // jflex.core.Macros macros
        start local 5 // jflex.core.unicode.CharClasses classes
         0: .line 113
            aload 0 /* this */
            iload 1 /* numInput */
            aload 3 /* regExps */
            aload 4 /* macros */
            invokevirtual jflex.core.RegExps.NFASize:(Ljflex/core/Macros;)I
            iconst_2
            aload 2 /* scanner */
            getfield jflex.core.LexScan.states:Ljflex/scanner/LexicalStates;
            invokevirtual jflex.scanner.LexicalStates.number:()I
            imul
            iadd
            invokespecial jflex.core.NFA.<init>:(II)V
         1: .line 115
            aload 0 /* this */
            aload 2 /* scanner */
            putfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
         2: .line 116
            aload 0 /* this */
            aload 3 /* regExps */
            putfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
         3: .line 117
            aload 0 /* this */
            aload 5 /* classes */
            putfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
         4: .line 119
            aload 0 /* this */
            aload 2 /* scanner */
            getfield jflex.core.LexScan.states:Ljflex/scanner/LexicalStates;
            invokevirtual jflex.scanner.LexicalStates.number:()I
            putfield jflex.core.NFA.numLexStates:I
         5: .line 122
            aload 0 /* this */
            invokevirtual jflex.core.NFA.numEntryStates:()I
            istore 6 /* new_num */
        start local 6 // int new_num
         6: .line 123
            aload 0 /* this */
            iload 6 /* new_num */
            invokevirtual jflex.core.NFA.ensureCapacity:(I)V
         7: .line 124
            aload 0 /* this */
            iload 6 /* new_num */
            putfield jflex.core.NFA.numStates:I
         8: .line 125
            return
        end local 6 // int new_num
        end local 5 // jflex.core.unicode.CharClasses classes
        end local 4 // jflex.core.Macros macros
        end local 3 // jflex.core.RegExps regExps
        end local 2 // jflex.core.LexScan scanner
        end local 1 // int numInput
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljflex/core/NFA;
            0    9     1  numInput  I
            0    9     2   scanner  Ljflex/core/LexScan;
            0    9     3   regExps  Ljflex/core/RegExps;
            0    9     4    macros  Ljflex/core/Macros;
            0    9     5   classes  Ljflex/core/unicode/CharClasses;
            6    9     6   new_num  I
    MethodParameters:
          Name  Flags
      numInput  
      scanner   
      regExps   
      macros    
      classes   

  public jflex.state.StateSet epsilon(int);
    descriptor: (I)Ljflex/state/StateSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // int i
         0: .line 128
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 1 /* i */
            aaload
            areturn
        end local 1 // int i
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;
            0    1     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public int numEntryStates();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 132
            iconst_2
            aload 0 /* this */
            getfield jflex.core.NFA.numLexStates:I
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            getfield jflex.core.RegExps.gen_look_count:I
            iadd
            imul
            ireturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public int numInput();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 136
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            ireturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public int numLexStates();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 140
            aload 0 /* this */
            getfield jflex.core.NFA.numLexStates:I
            ireturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public int numStates();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 144
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            ireturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public jflex.state.StateSet reachableStates(int, int);
    descriptor: (II)Ljflex/state/StateSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // int currentState
        start local 2 // int nextChar
         0: .line 149
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 1 /* currentState */
            aaload
            iload 2 /* nextChar */
            aaload
            areturn
        end local 2 // int nextChar
        end local 1 // int currentState
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0          this  Ljflex/core/NFA;
            0    1     1  currentState  I
            0    1     2      nextChar  I
    MethodParameters:
              Name  Flags
      currentState  
      nextChar      

  public jflex.state.StateSetEnumerator states();
    descriptor: ()Ljflex/state/StateSetEnumerator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 153
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            areturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public jflex.state.StateSet tempStateSet();
    descriptor: ()Ljflex/state/StateSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 157
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            areturn
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/NFA;

  public void addStandaloneRule();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 165
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            istore 1 /* start */
        start local 1 // int start
         1: .line 166
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            iconst_1
            iadd
            istore 2 /* end */
        start local 2 // int end
         2: .line 168
            iconst_0
            istore 3 /* c */
        start local 3 // int c
         3: goto 5
      StackMap locals: int int int
      StackMap stack:
         4: aload 0 /* this */
            iload 1 /* start */
            iload 3 /* c */
            iload 2 /* end */
            invokevirtual jflex.core.NFA.addTransition:(III)V
            iinc 3 /* c */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* c */
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            invokevirtual jflex.core.unicode.CharClasses.getNumClasses:()I
            if_icmplt 4
        end local 3 // int c
         6: .line 170
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 9
      StackMap locals:
      StackMap stack:
         8: aload 0 /* this */
            iload 3 /* i */
            iload 1 /* start */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numLexStates:I
            iconst_2
            imul
            if_icmplt 8
        end local 3 // int i
        10: .line 172
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            iload 2 /* end */
            new jflex.core.Action
            dup
            ldc "System.out.print(yytext());"
            ldc 2147483647
            invokespecial jflex.core.Action.<init>:(Ljava/lang/String;I)V
            aastore
        11: .line 173
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            iload 2 /* end */
            iconst_1
            bastore
        12: .line 174
            return
        end local 2 // int end
        end local 1 // int start
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Ljflex/core/NFA;
            1   13     1  start  I
            2   13     2    end  I
            3    6     3      c  I
            7   10     3      i  I

  public void addRegExp(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // int regExpNum
         0: .line 187
            aload 0 /* this */
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getRegExp:(I)Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa */
        start local 2 // jflex.base.IntPair nfa
         1: .line 189
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getStates:(I)Ljava/util/List;
            astore 3 /* lexStates */
        start local 3 // java.util.List lexStates
         2: .line 191
            aload 3 /* lexStates */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 3
            aload 0 /* this */
            getfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
            getfield jflex.core.LexScan.states:Ljflex/scanner/LexicalStates;
            invokevirtual jflex.scanner.LexicalStates.getInclusiveStates:()Ljava/util/List;
            astore 3 /* lexStates */
         3: .line 193
      StackMap locals: jflex.base.IntPair java.util.List
      StackMap stack:
            aload 3 /* lexStates */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 7
      StackMap locals: jflex.core.NFA int jflex.base.IntPair java.util.List top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 4 /* stateNum */
        start local 4 // java.lang.Integer stateNum
         5: .line 194
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.isBOL:(I)Z
            ifne 6
            aload 0 /* this */
            iconst_2
            aload 4 /* stateNum */
            invokevirtual java.lang.Integer.intValue:()I
            imul
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
         6: .line 196
      StackMap locals: jflex.core.NFA int jflex.base.IntPair java.util.List java.lang.Integer java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            iconst_2
            aload 4 /* stateNum */
            invokevirtual java.lang.Integer.intValue:()I
            imul
            iconst_1
            iadd
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        end local 4 // java.lang.Integer stateNum
         7: .line 193
      StackMap locals: jflex.core.NFA int jflex.base.IntPair java.util.List top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 199
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getLookAhead:(I)Ljflex/core/RegExp;
            ifnull 32
         9: .line 200
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getAction:(I)Ljflex/core/Action;
            astore 4 /* a */
        start local 4 // jflex.core.Action a
        10: .line 202
            aload 4 /* a */
            invokevirtual jflex.core.Action.lookAhead:()I
            iconst_3
            if_icmpne 14
        11: .line 203
            aload 0 /* this */
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            aload 4 /* a */
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getLookAhead:(I)Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertLookAheadChoices:(ILjflex/core/Action;Ljflex/core/RegExp;)V
        12: .line 206
            aload 0 /* this */
            getfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
            getfield jflex.core.LexScan.actions:Ljava/util/List;
            aload 4 /* a */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            pop
        13: .line 207
            goto 34
        14: .line 208
      StackMap locals: jflex.core.NFA int jflex.base.IntPair java.util.List jflex.core.Action
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getRegExp:(I)Ljflex/core/RegExp;
            astore 5 /* r1 */
        start local 5 // jflex.core.RegExp r1
        15: .line 209
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getLookAhead:(I)Ljflex/core/RegExp;
            astore 6 /* r2 */
        start local 6 // jflex.core.RegExp r2
        16: .line 211
            aload 0 /* this */
            aload 6 /* r2 */
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 7 /* look */
        start local 7 // jflex.base.IntPair look
        17: .line 213
            aload 0 /* this */
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            aload 7 /* look */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        18: .line 215
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 7 /* look */
            invokevirtual jflex.base.IntPair.end:()I
            aload 4 /* a */
            aastore
        19: .line 216
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 7 /* look */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            bastore
        20: .line 218
            aload 4 /* a */
            invokevirtual jflex.core.Action.lookAhead:()I
            iconst_4
            if_icmpne 34
        21: .line 220
            aload 0 /* this */
            aload 5 /* r1 */
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 8 /* forward */
        start local 8 // jflex.base.IntPair forward
        22: .line 222
            aload 0 /* this */
            aload 6 /* r2 */
            invokevirtual jflex.core.RegExp.rev:()Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 9 /* backward */
        start local 9 // jflex.base.IntPair backward
        23: .line 224
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 8 /* forward */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            bastore
        24: .line 225
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 8 /* forward */
            invokevirtual jflex.base.IntPair.end:()I
            new jflex.core.Action
            dup
            iconst_5
            invokespecial jflex.core.Action.<init>:(I)V
            aastore
        25: .line 227
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 9 /* backward */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            bastore
        26: .line 228
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 9 /* backward */
            invokevirtual jflex.base.IntPair.end:()I
            new jflex.core.Action
            dup
            bipush 6
            invokespecial jflex.core.Action.<init>:(I)V
            aastore
        27: .line 230
            iconst_2
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getLookEntry:(I)I
            aload 0 /* this */
            getfield jflex.core.NFA.numLexStates:I
            iadd
            imul
            istore 10 /* entry */
        start local 10 // int entry
        28: .line 231
            aload 0 /* this */
            iload 10 /* entry */
            aload 8 /* forward */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        29: .line 232
            aload 0 /* this */
            iload 10 /* entry */
            iconst_1
            iadd
            aload 9 /* backward */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        30: .line 234
            aload 4 /* a */
            iload 10 /* entry */
            invokevirtual jflex.core.Action.setEntryState:(I)V
        end local 10 // int entry
        end local 9 // jflex.base.IntPair backward
        end local 8 // jflex.base.IntPair forward
        end local 7 // jflex.base.IntPair look
        end local 6 // jflex.core.RegExp r2
        end local 5 // jflex.core.RegExp r1
        end local 4 // jflex.core.Action a
        31: .line 237
            goto 34
        32: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            aload 0 /* this */
            getfield jflex.core.NFA.regExps:Ljflex/core/RegExps;
            iload 1 /* regExpNum */
            invokevirtual jflex.core.RegExps.getAction:(I)Ljflex/core/Action;
            aastore
        33: .line 239
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 2 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            bastore
        34: .line 241
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.util.List lexStates
        end local 2 // jflex.base.IntPair nfa
        end local 1 // int regExpNum
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   35     0       this  Ljflex/core/NFA;
            0   35     1  regExpNum  I
            1   35     2        nfa  Ljflex/base/IntPair;
            2   35     3  lexStates  Ljava/util/List<Ljava/lang/Integer;>;
            5    7     4   stateNum  Ljava/lang/Integer;
           10   31     4          a  Ljflex/core/Action;
           15   31     5         r1  Ljflex/core/RegExp;
           16   31     6         r2  Ljflex/core/RegExp;
           17   31     7       look  Ljflex/base/IntPair;
           22   31     8    forward  Ljflex/base/IntPair;
           23   31     9   backward  Ljflex/base/IntPair;
           28   31    10      entry  I
    MethodParameters:
           Name  Flags
      regExpNum  

  private void insertLookAheadChoices(int, jflex.core.Action, jflex.core.RegExp);
    descriptor: (ILjflex/core/Action;Ljflex/core/RegExp;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // jflex.core.NFA this
        start local 1 // int baseEnd
        start local 2 // jflex.core.Action a
        start local 3 // jflex.core.RegExp lookAhead
         0: .line 252
            aload 3 /* lookAhead */
            getfield jflex.core.RegExp.type:I
            bipush 41
            if_icmpne 5
         1: .line 253
            aload 3 /* lookAhead */
            checkcast jflex.core.RegExp2
            astore 4 /* r */
        start local 4 // jflex.core.RegExp2 r
         2: .line 254
            aload 0 /* this */
            iload 1 /* baseEnd */
            aload 2 /* a */
            aload 4 /* r */
            getfield jflex.core.RegExp2.r1:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertLookAheadChoices:(ILjflex/core/Action;Ljflex/core/RegExp;)V
         3: .line 255
            aload 0 /* this */
            iload 1 /* baseEnd */
            aload 2 /* a */
            aload 4 /* r */
            getfield jflex.core.RegExp2.r2:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertLookAheadChoices:(ILjflex/core/Action;Ljflex/core/RegExp;)V
        end local 4 // jflex.core.RegExp2 r
         4: .line 256
            goto 15
         5: .line 257
      StackMap locals:
      StackMap stack:
            aload 3 /* lookAhead */
            invokestatic jflex.core.SemCheck.length:(Ljflex/core/RegExp;)I
            istore 4 /* len */
        start local 4 // int len
         6: .line 259
            iload 4 /* len */
            iflt 14
         7: .line 261
            aload 0 /* this */
            aload 3 /* lookAhead */
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 5 /* look */
        start local 5 // jflex.base.IntPair look
         8: .line 263
            aload 0 /* this */
            iload 1 /* baseEnd */
            aload 5 /* look */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
         9: .line 265
            aload 2 /* a */
            iload 4 /* len */
            invokevirtual jflex.core.Action.copyChoice:(I)Ljflex/core/Action;
            astore 6 /* x */
        start local 6 // jflex.core.Action x
        10: .line 266
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 5 /* look */
            invokevirtual jflex.base.IntPair.end:()I
            aload 6 /* x */
            aastore
        11: .line 267
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 5 /* look */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            bastore
        12: .line 271
            aload 0 /* this */
            getfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
            getfield jflex.core.LexScan.actions:Ljava/util/List;
            aload 6 /* x */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 6 // jflex.core.Action x
        end local 5 // jflex.base.IntPair look
        13: .line 272
            goto 15
        14: .line 274
      StackMap locals: int
      StackMap stack:
            new jflex.core.RegExpException
            dup
            aload 3 /* lookAhead */
            invokespecial jflex.core.RegExpException.<init>:(Ljflex/core/RegExp;)V
            athrow
        end local 4 // int len
        15: .line 277
      StackMap locals:
      StackMap stack:
            return
        end local 3 // jflex.core.RegExp lookAhead
        end local 2 // jflex.core.Action a
        end local 1 // int baseEnd
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   16     0       this  Ljflex/core/NFA;
            0   16     1    baseEnd  I
            0   16     2          a  Ljflex/core/Action;
            0   16     3  lookAhead  Ljflex/core/RegExp;
            2    4     4          r  Ljflex/core/RegExp2;
            6   15     4        len  I
            8   13     5       look  Ljflex/base/IntPair;
           10   13     6          x  Ljflex/core/Action;
    MethodParameters:
           Name  Flags
      baseEnd    
      a          
      lookAhead  

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // int newNumStates
         0: .line 285
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            arraylength
            istore 2 /* oldLength */
        start local 2 // int oldLength
         1: .line 287
            iload 1 /* newNumStates */
            iload 2 /* oldLength */
            if_icmpge 2
            return
         2: .line 289
      StackMap locals: int
      StackMap stack:
            iload 2 /* oldLength */
            iconst_2
            imul
            iload 1 /* newNumStates */
            invokestatic java.lang.Math.max:(II)I
            istore 3 /* newStatesLength */
        start local 3 // int newStatesLength
         3: .line 291
            iload 3 /* newStatesLength */
            newarray 4
            astore 4 /* newFinal */
        start local 4 // boolean[] newFinal
         4: .line 292
            iload 3 /* newStatesLength */
            anewarray jflex.core.Action
            astore 5 /* newAction */
        start local 5 // jflex.core.Action[] newAction
         5: .line 293
            iload 3 /* newStatesLength */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            multianewarray [[Ljflex/state/StateSet; 2
            astore 6 /* newTable */
        start local 6 // jflex.state.StateSet[][] newTable
         6: .line 294
            iload 3 /* newStatesLength */
            anewarray jflex.state.StateSet
            astore 7 /* newEpsilon */
        start local 7 // jflex.state.StateSet[] newEpsilon
         7: .line 296
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            iconst_0
            aload 4 /* newFinal */
            iconst_0
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 297
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            iconst_0
            aload 5 /* newAction */
            iconst_0
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 298
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iconst_0
            aload 7 /* newEpsilon */
            iconst_0
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 299
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iconst_0
            aload 6 /* newTable */
            iconst_0
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 301
            aload 0 /* this */
            aload 4 /* newFinal */
            putfield jflex.core.NFA.isFinal:[Z
        12: .line 302
            aload 0 /* this */
            aload 5 /* newAction */
            putfield jflex.core.NFA.action:[Ljflex/core/Action;
        13: .line 303
            aload 0 /* this */
            aload 7 /* newEpsilon */
            putfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
        14: .line 304
            aload 0 /* this */
            aload 6 /* newTable */
            putfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
        15: .line 305
            return
        end local 7 // jflex.state.StateSet[] newEpsilon
        end local 6 // jflex.state.StateSet[][] newTable
        end local 5 // jflex.core.Action[] newAction
        end local 4 // boolean[] newFinal
        end local 3 // int newStatesLength
        end local 2 // int oldLength
        end local 1 // int newNumStates
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   16     0             this  Ljflex/core/NFA;
            0   16     1     newNumStates  I
            1   16     2        oldLength  I
            3   16     3  newStatesLength  I
            4   16     4         newFinal  [Z
            5   16     5        newAction  [Ljflex/core/Action;
            6   16     6         newTable  [[Ljflex/state/StateSet;
            7   16     7       newEpsilon  [Ljflex/state/StateSet;
    MethodParameters:
              Name  Flags
      newNumStates  

  public void addTransition(int, int, int);
    descriptor: (III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // jflex.core.NFA this
        start local 1 // int start
        start local 2 // int input
        start local 3 // int dest
         0: .line 308
            new java.lang.StringBuilder
            dup
            ldc "Adding transition ("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* start */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* input */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* dest */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic jflex.logging.Out.debug:(Ljava/lang/String;)V
         1: .line 310
            iload 1 /* start */
            iload 3 /* dest */
            invokestatic java.lang.Math.max:(II)I
            iconst_1
            iadd
            istore 4 /* maxS */
        start local 4 // int maxS
         2: .line 312
            aload 0 /* this */
            iload 4 /* maxS */
            invokevirtual jflex.core.NFA.ensureCapacity:(I)V
         3: .line 314
            iload 4 /* maxS */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmple 4
            aload 0 /* this */
            iload 4 /* maxS */
            putfield jflex.core.NFA.numStates:I
         4: .line 316
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 1 /* start */
            aaload
            iload 2 /* input */
            aaload
            ifnull 5
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 1 /* start */
            aaload
            iload 2 /* input */
            aaload
            iload 3 /* dest */
            invokevirtual jflex.state.StateSet.addState:(I)V
            goto 6
         5: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 1 /* start */
            aaload
            iload 2 /* input */
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.estSize:I
            iload 3 /* dest */
            invokespecial jflex.state.StateSet.<init>:(II)V
            aastore
         6: .line 318
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int maxS
        end local 3 // int dest
        end local 2 // int input
        end local 1 // int start
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Ljflex/core/NFA;
            0    7     1  start  I
            0    7     2  input  I
            0    7     3   dest  I
            2    7     4   maxS  I
    MethodParameters:
       Name  Flags
      start  
      input  
      dest   

  public void addEpsilonTransition(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // int start
        start local 2 // int dest
         0: .line 321
            iload 1 /* start */
            iload 2 /* dest */
            invokestatic java.lang.Math.max:(II)I
            iconst_1
            iadd
            istore 3 /* max */
        start local 3 // int max
         1: .line 322
            aload 0 /* this */
            iload 3 /* max */
            invokevirtual jflex.core.NFA.ensureCapacity:(I)V
         2: .line 323
            iload 3 /* max */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmple 3
            aload 0 /* this */
            iload 3 /* max */
            putfield jflex.core.NFA.numStates:I
         3: .line 325
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 1 /* start */
            aaload
            ifnull 4
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 1 /* start */
            aaload
            iload 2 /* dest */
            invokevirtual jflex.state.StateSet.addState:(I)V
            goto 5
         4: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 1 /* start */
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.estSize:I
            iload 2 /* dest */
            invokespecial jflex.state.StateSet.<init>:(II)V
            aastore
         5: .line 327
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int max
        end local 2 // int dest
        end local 1 // int start
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljflex/core/NFA;
            0    6     1  start  I
            0    6     2   dest  I
            1    6     3    max  I
    MethodParameters:
       Name  Flags
      start  
      dest   

  public boolean containsFinal(jflex.state.StateSet);
    descriptor: (Ljflex/state/StateSet;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.state.StateSet set
         0: .line 335
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            aload 1 /* set */
            invokevirtual jflex.state.StateSetEnumerator.reset:(Ljflex/state/StateSet;)V
         1: .line 337
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.nextElement:()I
            baload
            ifeq 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.hasMoreElements:()Z
            ifne 2
         4: .line 339
            iconst_0
            ireturn
        end local 1 // jflex.state.StateSet set
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljflex/core/NFA;
            0    5     1   set  Ljflex/state/StateSet;
    MethodParameters:
      Name  Flags
      set   

  public jflex.core.Action getAction(jflex.state.StateSet);
    descriptor: (Ljflex/state/StateSet;)Ljflex/core/Action;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.state.StateSet set
         0: .line 349
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            aload 1 /* set */
            invokevirtual jflex.state.StateSetEnumerator.reset:(Ljflex/state/StateSet;)V
         1: .line 351
            aconst_null
            astore 2 /* maxAction */
        start local 2 // jflex.core.Action maxAction
         2: .line 353
            new java.lang.StringBuilder
            dup
            ldc "Determining action of : "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* set */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic jflex.logging.Out.debug:(Ljava/lang/String;)V
         3: .line 355
            goto 8
         4: .line 357
      StackMap locals: jflex.core.Action
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.nextElement:()I
            aaload
            astore 3 /* currentAction */
        start local 3 // jflex.core.Action currentAction
         5: .line 359
            aload 3 /* currentAction */
            ifnull 8
         6: .line 360
            aload 2 /* maxAction */
            ifnonnull 7
            aload 3 /* currentAction */
            astore 2 /* maxAction */
            goto 8
         7: .line 361
      StackMap locals: jflex.core.Action
      StackMap stack:
            aload 2 /* maxAction */
            aload 3 /* currentAction */
            invokevirtual jflex.core.Action.getHigherPriority:(Ljflex/core/Action;)Ljflex/core/Action;
            astore 2 /* maxAction */
        end local 3 // jflex.core.Action currentAction
         8: .line 355
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.hasMoreElements:()Z
            ifne 4
         9: .line 365
            aload 2 /* maxAction */
            areturn
        end local 2 // jflex.core.Action maxAction
        end local 1 // jflex.state.StateSet set
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   10     0           this  Ljflex/core/NFA;
            0   10     1            set  Ljflex/state/StateSet;
            2   10     2      maxAction  Ljflex/core/Action;
            5    8     3  currentAction  Ljflex/core/Action;
    MethodParameters:
      Name  Flags
      set   

  private jflex.state.StateSet closure(int);
    descriptor: (I)Ljflex/state/StateSet;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // int startState
         0: .line 381
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            astore 2 /* notvisited */
        start local 2 // jflex.state.StateSet notvisited
         1: .line 382
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            iload 1 /* startState */
            invokespecial jflex.state.StateSet.<init>:(II)V
            astore 3 /* closure */
        start local 3 // jflex.state.StateSet closure
         2: .line 384
            aload 2 /* notvisited */
            invokevirtual jflex.state.StateSet.clear:()V
         3: .line 385
            aload 2 /* notvisited */
            iload 1 /* startState */
            invokevirtual jflex.state.StateSet.addState:(I)V
         4: .line 387
            goto 8
         5: .line 390
      StackMap locals: jflex.state.StateSet jflex.state.StateSet
      StackMap stack:
            aload 2 /* notvisited */
            invokevirtual jflex.state.StateSet.getAndRemoveElement:()I
            istore 4 /* state */
        start local 4 // int state
         6: .line 393
            aload 2 /* notvisited */
            aload 3 /* closure */
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 4 /* state */
            aaload
            invokevirtual jflex.state.StateSet.complement:(Ljflex/state/StateSet;)Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
         7: .line 394
            aload 3 /* closure */
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 4 /* state */
            aaload
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
        end local 4 // int state
         8: .line 387
      StackMap locals:
      StackMap stack:
            aload 2 /* notvisited */
            invokevirtual jflex.state.StateSet.containsElements:()Z
            ifne 5
         9: .line 399
            aload 3 /* closure */
            areturn
        end local 3 // jflex.state.StateSet closure
        end local 2 // jflex.state.StateSet notvisited
        end local 1 // int startState
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Ljflex/core/NFA;
            0   10     1  startState  I
            1   10     2  notvisited  Ljflex/state/StateSet;
            2   10     3     closure  Ljflex/state/StateSet;
            6    8     4       state  I
    MethodParameters:
            Name  Flags
      startState  

  public void epsilonFill();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 403
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 404
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 1 /* i */
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual jflex.core.NFA.closure:(I)Ljflex/state/StateSet;
            aastore
         3: .line 403
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmplt 2
        end local 1 // int i
         5: .line 406
            return
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljflex/core/NFA;
            1    5     1     i  I

  private jflex.state.StateSet DFAEdge(jflex.state.StateSet, int);
    descriptor: (Ljflex/state/StateSet;I)Ljflex/state/StateSet;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.state.StateSet start
        start local 2 // int input
         0: .line 420
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSet.clear:()V
         1: .line 422
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            aload 1 /* start */
            invokevirtual jflex.state.StateSetEnumerator.reset:(Ljflex/state/StateSet;)V
         2: .line 423
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.nextElement:()I
            aaload
            iload 2 /* input */
            aaload
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.hasMoreElements:()Z
            ifne 3
         5: .line 425
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            invokespecial jflex.state.StateSet.<init>:(Ljflex/state/StateSet;)V
            astore 3 /* result */
        start local 3 // jflex.state.StateSet result
         6: .line 427
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSetEnumerator.reset:(Ljflex/state/StateSet;)V
         7: .line 428
            goto 9
      StackMap locals: jflex.state.StateSet
      StackMap stack:
         8: aload 3 /* result */
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.nextElement:()I
            aaload
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield jflex.core.NFA.states:Ljflex/state/StateSetEnumerator;
            invokevirtual jflex.state.StateSetEnumerator.hasMoreElements:()Z
            ifne 8
        10: .line 432
            aload 3 /* result */
            areturn
        end local 3 // jflex.state.StateSet result
        end local 2 // int input
        end local 1 // jflex.state.StateSet start
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljflex/core/NFA;
            0   11     1   start  Ljflex/state/StateSet;
            0   11     2   input  I
            6   11     3  result  Ljflex/state/StateSet;
    MethodParameters:
       Name  Flags
      start  
      input  

  public void dumpTable();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 436
            aload 0 /* this */
            invokevirtual jflex.core.NFA.toString:()Ljava/lang/String;
            invokestatic jflex.logging.Out.dump:(Ljava/lang/String;)V
         1: .line 437
            return
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljflex/core/NFA;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 441
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* result */
        start local 1 // java.lang.StringBuilder result
         1: .line 443
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 26
         3: .line 444
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* result */
            ldc "State"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 445
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            iload 2 /* i */
            baload
            ifeq 11
         5: .line 446
            aload 1 /* result */
            ldc "[FINAL"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 447
            aload 0 /* this */
            getfield jflex.core.NFA.action:[Ljflex/core/Action;
            iload 2 /* i */
            aaload
            invokevirtual jflex.core.Action.lookString:()Ljava/lang/String;
            astore 3 /* l */
        start local 3 // java.lang.String l
         7: .line 448
            aload 3 /* l */
            ldc ""
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 10
         8: .line 449
            aload 1 /* result */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 450
            aload 1 /* result */
            aload 3 /* l */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 452
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* result */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // java.lang.String l
        11: .line 454
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 456
            iconst_0
            istore 3 /* input */
        start local 3 // int input
        13: goto 22
        14: .line 457
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            iload 3 /* input */
            aaload
            ifnull 21
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            iload 3 /* input */
            aaload
            invokevirtual jflex.state.StateSet.containsElements:()Z
            ifeq 21
        15: .line 458
            aload 1 /* result */
        16: .line 459
            ldc "  with "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        17: .line 460
            iload 3 /* input */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        18: .line 461
            ldc " in "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        19: .line 462
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            iload 3 /* input */
            aaload
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        20: .line 463
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        21: .line 456
      StackMap locals:
      StackMap stack:
            iinc 3 /* input */ 1
      StackMap locals:
      StackMap stack:
        22: iload 3 /* input */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 14
        end local 3 // int input
        23: .line 466
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            ifnull 25
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            invokevirtual jflex.state.StateSet.containsElements:()Z
            ifeq 25
        24: .line 467
            aload 1 /* result */
            ldc "  with epsilon in "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        25: .line 443
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 2 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmplt 3
        end local 2 // int i
        27: .line 470
            aload 1 /* result */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder result
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   28     0    this  Ljflex/core/NFA;
            1   28     1  result  Ljava/lang/StringBuilder;
            2   27     2       i  I
            7   11     3       l  Ljava/lang/String;
           13   23     3   input  I

  public void writeDot(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=3, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // java.io.File file
         0: .line 476
            new java.io.PrintWriter
            dup
         1: .line 477
            new java.io.OutputStreamWriter
            dup
            new java.io.FileOutputStream
            dup
            aload 1 /* file */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/File;)V
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;Ljava/nio/charset/Charset;)V
         2: .line 476
            invokespecial java.io.PrintWriter.<init>:(Ljava/io/Writer;)V
         3: .line 475
            astore 2 /* writer */
        start local 2 // java.io.PrintWriter writer
         4: .line 478
            aload 2 /* writer */
            aload 0 /* this */
            invokevirtual jflex.core.NFA.dotFormat:()Ljava/lang/String;
            invokevirtual java.io.PrintWriter.println:(Ljava/lang/String;)V
         5: .line 479
            aload 2 /* writer */
            invokevirtual java.io.PrintWriter.close:()V
        end local 2 // java.io.PrintWriter writer
         6: .line 480
            goto 10
      StackMap locals:
      StackMap stack: java.io.IOException
         7: astore 2 /* e */
        start local 2 // java.io.IOException e
         8: .line 481
            getstatic jflex.l10n.ErrorMessages.FILE_WRITE:Ljflex/l10n/ErrorMessages$ErrorMessage;
            aload 1 /* file */
            invokestatic jflex.logging.Out.error:(Ljflex/l10n/ErrorMessages$ErrorMessage;Ljava/io/File;)V
         9: .line 482
            new jflex.exceptions.GeneratorException
            dup
            aload 2 /* e */
            invokespecial jflex.exceptions.GeneratorException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 2 // java.io.IOException e
        10: .line 484
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.io.File file
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Ljflex/core/NFA;
            0   11     1    file  Ljava/io/File;
            4    6     2  writer  Ljava/io/PrintWriter;
            8   10     2       e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     6       7  Class java.io.IOException
    MethodParameters:
      Name  Flags
      file  

  public java.lang.String dotFormat();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // jflex.core.NFA this
         0: .line 487
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* result */
        start local 1 // java.lang.StringBuilder result
         1: .line 489
            aload 1 /* result */
            ldc "digraph NFA {"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 490
            aload 1 /* result */
            ldc "rankdir = LR"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 492
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         4: goto 10
         5: .line 493
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.isFinal:[Z
            iload 2 /* i */
            baload
            ifeq 9
         6: .line 494
            aload 1 /* result */
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         7: .line 495
            aload 1 /* result */
            ldc " [shape = doublecircle]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 496
            aload 1 /* result */
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 492
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmplt 5
        end local 2 // int i
        11: .line 500
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        12: goto 27
        13: .line 501
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* input */
        start local 3 // int input
        14: goto 21
        15: .line 502
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            iload 3 /* input */
            aaload
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 5
            goto 19
      StackMap locals: jflex.core.NFA java.lang.StringBuilder int int top java.util.Iterator
      StackMap stack:
        16: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 4 /* s */
        start local 4 // int s
        17: .line 503
            aload 1 /* result */
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* s */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        18: .line 504
            aload 1 /* result */
            ldc " [label=\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            iload 3 /* input */
            invokevirtual jflex.core.unicode.CharClasses.toString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "\"]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 4 // int s
        19: .line 502
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        20: .line 501
            iinc 3 /* input */ 1
      StackMap locals: jflex.core.NFA java.lang.StringBuilder int int
      StackMap stack:
        21: iload 3 /* input */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 15
        end local 3 // int input
        22: .line 507
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 2 /* i */
            aaload
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 4
            goto 25
      StackMap locals: jflex.core.NFA java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
        23: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 3 /* s */
        start local 3 // int s
        24: .line 508
            aload 1 /* result */
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* s */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " [style=dotted]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // int s
        25: .line 507
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 23
        26: .line 500
            iinc 2 /* i */ 1
      StackMap locals: jflex.core.NFA java.lang.StringBuilder int
      StackMap stack:
        27: iload 2 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            if_icmplt 13
        end local 2 // int i
        28: .line 512
            aload 1 /* result */
            ldc "}"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            getstatic jflex.logging.Out.NL:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        29: .line 514
            aload 1 /* result */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder result
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   30     0    this  Ljflex/core/NFA;
            1   30     1  result  Ljava/lang/StringBuilder;
            4   11     2       i  I
           12   28     2       i  I
           14   22     3   input  I
           17   19     4       s  I
           24   25     3       s  I

  private void insertLetterNFA(boolean, int, int, int);
    descriptor: (ZIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=5
        start local 0 // jflex.core.NFA this
        start local 1 // boolean caseless
        start local 2 // int ch
        start local 3 // int start
        start local 4 // int end
         0: .line 521
            iload 1 /* caseless */
            ifeq 12
         1: .line 522
            iload 2 /* ch */
            invokestatic jflex.core.unicode.IntCharSet.ofCharacter:(I)Ljflex/core/unicode/IntCharSet;
            astore 5 /* set */
        start local 5 // jflex.core.unicode.IntCharSet set
         2: .line 523
            aload 5 /* set */
            aload 0 /* this */
            getfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
            invokevirtual jflex.core.LexScan.getUnicodeProperties:()Ljflex/core/unicode/UnicodeProperties;
            invokevirtual jflex.core.unicode.IntCharSet.getCaseless:(Ljflex/core/unicode/UnicodeProperties;)Ljflex/core/unicode/IntCharSet;
            astore 6 /* caselessSet */
        start local 6 // jflex.core.unicode.IntCharSet caselessSet
         3: .line 524
            aload 6 /* caselessSet */
            invokevirtual jflex.core.unicode.IntCharSet.getIntervals:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 8
            goto 10
      StackMap locals: jflex.core.NFA int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet top java.util.Iterator
      StackMap stack:
         4: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jflex.chars.Interval
            astore 7 /* interval */
        start local 7 // jflex.chars.Interval interval
         5: .line 525
            aload 7 /* interval */
            getfield jflex.chars.Interval.start:I
            istore 9 /* elem */
        start local 9 // int elem
         6: goto 9
         7: .line 526
      StackMap locals: jflex.core.NFA int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet jflex.chars.Interval java.util.Iterator int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* start */
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            iload 9 /* elem */
            invokevirtual jflex.core.unicode.CharClasses.getClassCode:(I)I
            iload 4 /* end */
            invokevirtual jflex.core.NFA.addTransition:(III)V
         8: .line 525
            iinc 9 /* elem */ 1
      StackMap locals:
      StackMap stack:
         9: iload 9 /* elem */
            aload 7 /* interval */
            getfield jflex.chars.Interval.end:I
            if_icmple 7
        end local 9 // int elem
        end local 7 // jflex.chars.Interval interval
        10: .line 524
      StackMap locals: jflex.core.NFA int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 6 // jflex.core.unicode.IntCharSet caselessSet
        end local 5 // jflex.core.unicode.IntCharSet set
        11: .line 529
            goto 13
        12: .line 530
      StackMap locals: jflex.core.NFA int int int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* start */
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            iload 2 /* ch */
            invokevirtual jflex.core.unicode.CharClasses.getClassCode:(I)I
            iload 4 /* end */
            invokevirtual jflex.core.NFA.addTransition:(III)V
        13: .line 532
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int end
        end local 3 // int start
        end local 2 // int ch
        end local 1 // boolean caseless
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Ljflex/core/NFA;
            0   14     1     caseless  Z
            0   14     2           ch  I
            0   14     3        start  I
            0   14     4          end  I
            2   11     5          set  Ljflex/core/unicode/IntCharSet;
            3   11     6  caselessSet  Ljflex/core/unicode/IntCharSet;
            5   10     7     interval  Ljflex/chars/Interval;
            6   10     9         elem  I
    MethodParameters:
          Name  Flags
      caseless  
      ch        
      start     
      end       

  private jflex.base.IntPair insertStringNFA(boolean, java.lang.String);
    descriptor: (ZLjava/lang/String;)Ljflex/base/IntPair;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // boolean caseless
        start local 2 // java.lang.String str
         0: .line 535
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            istore 3 /* start */
        start local 3 // int start
         1: .line 536
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         2: .line 537
            iconst_0
            istore 5 /* pos */
        start local 5 // int pos
         3: goto 20
         4: .line 538
      StackMap locals: int int int
      StackMap stack:
            aload 2 /* str */
            iload 5 /* pos */
            invokevirtual java.lang.String.codePointAt:(I)I
            istore 6 /* ch */
        start local 6 // int ch
         5: .line 539
            iload 1 /* caseless */
            ifeq 17
         6: .line 540
            iload 6 /* ch */
            invokestatic jflex.core.unicode.IntCharSet.ofCharacter:(I)Ljflex/core/unicode/IntCharSet;
            astore 7 /* set */
        start local 7 // jflex.core.unicode.IntCharSet set
         7: .line 541
            aload 7 /* set */
            aload 0 /* this */
            getfield jflex.core.NFA.scanner:Ljflex/core/LexScan;
            invokevirtual jflex.core.LexScan.getUnicodeProperties:()Ljflex/core/unicode/UnicodeProperties;
            invokevirtual jflex.core.unicode.IntCharSet.getCaseless:(Ljflex/core/unicode/UnicodeProperties;)Ljflex/core/unicode/IntCharSet;
            astore 8 /* caselessSet */
        start local 8 // jflex.core.unicode.IntCharSet caselessSet
         8: .line 542
            aload 8 /* caselessSet */
            invokevirtual jflex.core.unicode.IntCharSet.getIntervals:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 10
            goto 15
      StackMap locals: jflex.core.NFA int java.lang.String int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet top java.util.Iterator
      StackMap stack:
         9: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jflex.chars.Interval
            astore 9 /* interval */
        start local 9 // jflex.chars.Interval interval
        10: .line 543
            aload 9 /* interval */
            getfield jflex.chars.Interval.start:I
            istore 11 /* elem */
        start local 11 // int elem
        11: goto 14
        12: .line 544
      StackMap locals: jflex.core.NFA int java.lang.String int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet jflex.chars.Interval java.util.Iterator int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            iload 3 /* start */
            iadd
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            iload 11 /* elem */
            invokevirtual jflex.core.unicode.CharClasses.getClassCode:(I)I
            iload 4 /* i */
            iload 3 /* start */
            iadd
            iconst_1
            iadd
            invokevirtual jflex.core.NFA.addTransition:(III)V
        13: .line 543
            iinc 11 /* elem */ 1
      StackMap locals:
      StackMap stack:
        14: iload 11 /* elem */
            aload 9 /* interval */
            getfield jflex.chars.Interval.end:I
            if_icmple 12
        end local 11 // int elem
        end local 9 // jflex.chars.Interval interval
        15: .line 542
      StackMap locals: jflex.core.NFA int java.lang.String int int int int jflex.core.unicode.IntCharSet jflex.core.unicode.IntCharSet top java.util.Iterator
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        end local 8 // jflex.core.unicode.IntCharSet caselessSet
        end local 7 // jflex.core.unicode.IntCharSet set
        16: .line 547
            goto 18
        17: .line 548
      StackMap locals: jflex.core.NFA int java.lang.String int int int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            iload 3 /* start */
            iadd
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            iload 6 /* ch */
            invokevirtual jflex.core.unicode.CharClasses.getClassCode:(I)I
            iload 4 /* i */
            iload 3 /* start */
            iadd
            iconst_1
            iadd
            invokevirtual jflex.core.NFA.addTransition:(III)V
        18: .line 550
      StackMap locals:
      StackMap stack:
            iload 5 /* pos */
            iload 6 /* ch */
            invokestatic java.lang.Character.charCount:(I)I
            iadd
            istore 5 /* pos */
        end local 6 // int ch
        19: .line 537
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 5 /* pos */
            aload 2 /* str */
            invokevirtual java.lang.String.length:()I
            if_icmplt 4
        end local 5 // int pos
        21: .line 553
            iload 3 /* start */
            iload 4 /* i */
            iload 3 /* start */
            iadd
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 4 // int i
        end local 3 // int start
        end local 2 // java.lang.String str
        end local 1 // boolean caseless
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   22     0         this  Ljflex/core/NFA;
            0   22     1     caseless  Z
            0   22     2          str  Ljava/lang/String;
            1   22     3        start  I
            2   22     4            i  I
            3   21     5          pos  I
            5   19     6           ch  I
            7   16     7          set  Ljflex/core/unicode/IntCharSet;
            8   16     8  caselessSet  Ljflex/core/unicode/IntCharSet;
           10   15     9     interval  Ljflex/chars/Interval;
           11   15    11         elem  I
    MethodParameters:
          Name  Flags
      caseless  
      str       

  private void insertClassNFA(jflex.core.unicode.IntCharSet, int, int);
    descriptor: (Ljflex/core/unicode/IntCharSet;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.core.unicode.IntCharSet set
        start local 2 // int start
        start local 3 // int end
         0: .line 557
            aload 0 /* this */
            getfield jflex.core.NFA.classes:Ljflex/core/unicode/CharClasses;
            aload 1 /* set */
            iconst_0
            invokevirtual jflex.core.unicode.CharClasses.getClassCodes:(Ljflex/core/unicode/IntCharSet;Z)[I
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 4
      StackMap locals: jflex.core.NFA jflex.core.unicode.IntCharSet int int top int int int[]
      StackMap stack:
         1: aload 7
            iload 5
            iaload
            istore 4 /* aCl */
        start local 4 // int aCl
         2: .line 558
            aload 0 /* this */
            iload 2 /* start */
            iload 4 /* aCl */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.addTransition:(III)V
        end local 4 // int aCl
         3: .line 557
            iinc 5 1
      StackMap locals:
      StackMap stack:
         4: iload 5
            iload 6
            if_icmplt 1
         5: .line 560
            return
        end local 3 // int end
        end local 2 // int start
        end local 1 // jflex.core.unicode.IntCharSet set
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljflex/core/NFA;
            0    6     1    set  Ljflex/core/unicode/IntCharSet;
            0    6     2  start  I
            0    6     3    end  I
            2    3     4    aCl  I
    MethodParameters:
       Name  Flags
      set    
      start  
      end    

  private jflex.base.IntPair complement(jflex.base.IntPair);
    descriptor: (Ljflex/base/IntPair;)Ljflex/base/IntPair;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=14, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.base.IntPair nfa
         0: .line 578
            aload 1 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            iadd
            istore 2 /* dfaStart */
        start local 2 // int dfaStart
         1: .line 580
            aload 0 /* this */
            invokevirtual jflex.core.NFA.epsilonFill:()V
         2: .line 582
            new java.util.HashMap
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokespecial java.util.HashMap.<init>:(I)V
            astore 3 /* dfaStates */
        start local 3 // java.util.Map dfaStates
         3: .line 583
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 4 /* dfaList */
        start local 4 // java.util.List dfaList
         4: .line 585
            iconst_0
            istore 5 /* numDFAStates */
        start local 5 // int numDFAStates
         5: .line 586
            iconst_0
            istore 6 /* currentDFAState */
        start local 6 // int currentDFAState
         6: .line 590
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            aload 1 /* nfa */
            invokevirtual jflex.base.IntPair.start:()I
            aaload
            astore 8 /* newState */
        start local 8 // jflex.state.StateSet newState
         7: .line 591
            aload 3 /* dfaStates */
            aload 8 /* newState */
            iload 5 /* numDFAStates */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 592
            aload 4 /* dfaList */
            aload 8 /* newState */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         9: .line 606
            goto 28
        10: .line 608
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int top jflex.state.StateSet
      StackMap stack:
            aload 4 /* dfaList */
            iload 6 /* currentDFAState */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast jflex.state.StateSet
            astore 7 /* currentState */
        start local 7 // jflex.state.StateSet currentState
        11: .line 610
            iconst_0
            istore 9 /* input */
        start local 9 // int input
        12: goto 26
        13: .line 611
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int jflex.state.StateSet jflex.state.StateSet int
      StackMap stack:
            aload 0 /* this */
            aload 7 /* currentState */
            iload 9 /* input */
            invokevirtual jflex.core.NFA.DFAEdge:(Ljflex/state/StateSet;I)Ljflex/state/StateSet;
            astore 8 /* newState */
        14: .line 613
            aload 8 /* newState */
            invokevirtual jflex.state.StateSet.containsElements:()Z
            ifeq 25
        15: .line 619
            aload 3 /* dfaStates */
            aload 8 /* newState */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 10 /* nextDFAState */
        start local 10 // java.lang.Integer nextDFAState
        16: .line 621
            aload 10 /* nextDFAState */
            ifnull 19
        17: .line 623
            aload 0 /* this */
            iload 2 /* dfaStart */
            iload 6 /* currentDFAState */
            iadd
            iload 9 /* input */
            iload 2 /* dfaStart */
            aload 10 /* nextDFAState */
            invokevirtual java.lang.Integer.intValue:()I
            iadd
            invokevirtual jflex.core.NFA.addTransition:(III)V
        18: .line 624
            goto 25
        19: .line 625
      StackMap locals: java.lang.Integer
      StackMap stack:
            getstatic jflex.option.Options.dump:Z
            ifeq 21
        20: .line 626
            ldc "+"
            invokestatic jflex.logging.Out.print:(Ljava/lang/String;)V
        21: .line 630
      StackMap locals:
      StackMap stack:
            iinc 5 /* numDFAStates */ 1
        22: .line 632
            aload 3 /* dfaStates */
            aload 8 /* newState */
            iload 5 /* numDFAStates */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        23: .line 633
            aload 4 /* dfaList */
            aload 8 /* newState */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        24: .line 635
            aload 0 /* this */
            iload 2 /* dfaStart */
            iload 6 /* currentDFAState */
            iadd
            iload 9 /* input */
            iload 2 /* dfaStart */
            iload 5 /* numDFAStates */
            iadd
            invokevirtual jflex.core.NFA.addTransition:(III)V
        end local 10 // java.lang.Integer nextDFAState
        25: .line 610
      StackMap locals:
      StackMap stack:
            iinc 9 /* input */ 1
      StackMap locals:
      StackMap stack:
        26: iload 9 /* input */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 13
        end local 9 // int input
        27: .line 640
            iinc 6 /* currentDFAState */ 1
        end local 7 // jflex.state.StateSet currentState
        28: .line 606
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int top jflex.state.StateSet
      StackMap stack:
            iload 6 /* currentDFAState */
            iload 5 /* numDFAStates */
            if_icmple 10
        29: .line 650
            iload 2 /* dfaStart */
            iload 5 /* numDFAStates */
            iadd
            iconst_1
            iadd
            istore 9 /* start */
        start local 9 // int start
        30: .line 651
            iload 2 /* dfaStart */
            iload 5 /* numDFAStates */
            iadd
            iconst_2
            iadd
            istore 10 /* error */
        start local 10 // int error
        31: .line 652
            iload 2 /* dfaStart */
            iload 5 /* numDFAStates */
            iadd
            iconst_3
            iadd
            istore 11 /* end */
        start local 11 // int end
        32: .line 654
            aload 0 /* this */
            iload 9 /* start */
            iload 2 /* dfaStart */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        33: .line 656
            iconst_0
            istore 12 /* i */
        start local 12 // int i
        34: goto 36
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int top jflex.state.StateSet int int int int
      StackMap stack:
        35: aload 0 /* this */
            iload 10 /* error */
            iload 12 /* i */
            iload 10 /* error */
            invokevirtual jflex.core.NFA.addTransition:(III)V
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        36: iload 12 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 35
        end local 12 // int i
        37: .line 658
            aload 0 /* this */
            iload 10 /* error */
            iload 11 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        38: .line 660
            iconst_0
            istore 12 /* s */
        start local 12 // int s
        39: goto 49
        40: .line 661
      StackMap locals:
      StackMap stack:
            aload 4 /* dfaList */
            iload 12 /* s */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast jflex.state.StateSet
            astore 7 /* currentState */
        start local 7 // jflex.state.StateSet currentState
        41: .line 663
            iload 2 /* dfaStart */
            iload 12 /* s */
            iadd
            istore 6 /* currentDFAState */
        42: .line 666
            aload 7 /* currentState */
            aload 1 /* nfa */
            invokevirtual jflex.base.IntPair.end:()I
            invokevirtual jflex.state.StateSet.hasElement:(I)Z
            ifne 43
            aload 0 /* this */
            iload 6 /* currentDFAState */
            iload 11 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        43: .line 670
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int jflex.state.StateSet jflex.state.StateSet int int int int
      StackMap stack:
            iconst_0
            istore 13 /* i */
        start local 13 // int i
        44: goto 47
        45: .line 671
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 6 /* currentDFAState */
            aaload
            iload 13 /* i */
            aaload
            ifnonnull 46
            aload 0 /* this */
            iload 6 /* currentDFAState */
            iload 13 /* i */
            iload 10 /* error */
            invokevirtual jflex.core.NFA.addTransition:(III)V
        46: .line 670
      StackMap locals:
      StackMap stack:
            iinc 13 /* i */ 1
      StackMap locals:
      StackMap stack:
        47: iload 13 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 45
        end local 13 // int i
        48: .line 660
            iinc 12 /* s */ 1
        end local 7 // jflex.state.StateSet currentState
      StackMap locals: jflex.core.NFA jflex.base.IntPair int java.util.Map java.util.List int int top jflex.state.StateSet int int int int
      StackMap stack:
        49: iload 12 /* s */
            iload 5 /* numDFAStates */
            if_icmple 40
        end local 12 // int s
        50: .line 675
            aload 0 /* this */
            iload 2 /* dfaStart */
            iload 11 /* end */
            invokevirtual jflex.core.NFA.removeDead:(II)V
        51: .line 680
            iload 9 /* start */
            iload 11 /* end */
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 11 // int end
        end local 10 // int error
        end local 9 // int start
        end local 8 // jflex.state.StateSet newState
        end local 6 // int currentDFAState
        end local 5 // int numDFAStates
        end local 4 // java.util.List dfaList
        end local 3 // java.util.Map dfaStates
        end local 2 // int dfaStart
        end local 1 // jflex.base.IntPair nfa
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   52     0             this  Ljflex/core/NFA;
            0   52     1              nfa  Ljflex/base/IntPair;
            1   52     2         dfaStart  I
            3   52     3        dfaStates  Ljava/util/Map<Ljflex/state/StateSet;Ljava/lang/Integer;>;
            4   52     4          dfaList  Ljava/util/List<Ljflex/state/StateSet;>;
            5   52     5     numDFAStates  I
            6   52     6  currentDFAState  I
           11   28     7     currentState  Ljflex/state/StateSet;
           41   49     7     currentState  Ljflex/state/StateSet;
            7   52     8         newState  Ljflex/state/StateSet;
           12   27     9            input  I
           16   25    10     nextDFAState  Ljava/lang/Integer;
           30   52     9            start  I
           31   52    10            error  I
           32   52    11              end  I
           34   37    12                i  I
           39   50    12                s  I
           44   48    13                i  I
    MethodParameters:
      Name  Flags
      nfa   

  private void removeDead(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=12, args_size=3
        start local 0 // jflex.core.NFA this
        start local 1 // int start
        start local 2 // int end
         0: .line 705
            aload 0 /* this */
            getfield jflex.core.NFA.tempStateSet:Ljflex/state/StateSet;
            astore 3 /* notvisited */
        start local 3 // jflex.state.StateSet notvisited
         1: .line 706
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            iload 1 /* start */
            invokespecial jflex.state.StateSet.<init>:(II)V
            astore 4 /* reachable */
        start local 4 // jflex.state.StateSet reachable
         2: .line 708
            aload 3 /* notvisited */
            invokevirtual jflex.state.StateSet.clear:()V
         3: .line 709
            aload 3 /* notvisited */
            iload 1 /* start */
            invokevirtual jflex.state.StateSet.addState:(I)V
         4: .line 711
            goto 14
         5: .line 712
      StackMap locals: jflex.state.StateSet jflex.state.StateSet
      StackMap stack:
            aload 3 /* notvisited */
            invokevirtual jflex.state.StateSet.getAndRemoveElement:()I
            istore 5 /* state */
        start local 5 // int state
         6: .line 713
            aload 3 /* notvisited */
            aload 4 /* reachable */
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 5 /* state */
            aaload
            invokevirtual jflex.state.StateSet.complement:(Ljflex/state/StateSet;)Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
         7: .line 714
            aload 4 /* reachable */
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 5 /* state */
            aaload
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
         8: .line 715
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         9: goto 13
        10: .line 716
      StackMap locals: int int
      StackMap stack:
            aload 3 /* notvisited */
            aload 4 /* reachable */
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 5 /* state */
            aaload
            iload 6 /* i */
            aaload
            invokevirtual jflex.state.StateSet.complement:(Ljflex/state/StateSet;)Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
        11: .line 717
            aload 4 /* reachable */
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 5 /* state */
            aaload
            iload 6 /* i */
            aaload
            invokevirtual jflex.state.StateSet.add:(Ljflex/state/StateSet;)V
        12: .line 715
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 10
        end local 6 // int i
        end local 5 // int state
        14: .line 711
      StackMap locals:
      StackMap stack:
            aload 3 /* notvisited */
            invokevirtual jflex.state.StateSet.containsElements:()Z
            ifne 5
        15: .line 725
            new jflex.state.StateSet
            dup
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            iload 2 /* end */
            invokespecial jflex.state.StateSet.<init>:(II)V
            astore 5 /* live */
        start local 5 // jflex.state.StateSet live
        16: .line 726
            iconst_1
            istore 6 /* changed */
        start local 6 // boolean changed
        17: .line 729
            goto 41
        18: .line 730
      StackMap locals: jflex.state.StateSet int
      StackMap stack:
            iconst_0
            istore 6 /* changed */
        19: .line 731
            new java.lang.StringBuilder
            dup
            ldc "live: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 5 /* live */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic jflex.logging.Out.debug:(Ljava/lang/String;)V
        20: .line 732
            aload 5 /* live */
            aload 4 /* reachable */
            invokevirtual jflex.state.StateSet.complement:(Ljflex/state/StateSet;)Ljflex/state/StateSet;
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 8
            goto 40
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int top java.util.Iterator
      StackMap stack:
        21: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 7 /* s */
        start local 7 // int s
        22: .line 733
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        23: goto 32
        24: .line 734
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int int java.util.Iterator int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            iload 9 /* i */
            aaload
            ifnull 31
        25: .line 735
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            iload 9 /* i */
            aaload
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 11
            goto 30
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int int java.util.Iterator int top java.util.Iterator
      StackMap stack:
        26: aload 11
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 10 /* state */
        start local 10 // int state
        27: .line 736
            aload 5 /* live */
            iload 10 /* state */
            invokevirtual jflex.state.StateSet.hasElement:(I)Z
            ifeq 30
        28: .line 737
            iconst_1
            istore 6 /* changed */
        29: .line 738
            aload 5 /* live */
            iload 7 /* s */
            invokevirtual jflex.state.StateSet.addState:(I)V
        end local 10 // int state
        30: .line 735
      StackMap locals:
      StackMap stack:
            aload 11
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 26
        31: .line 733
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int int java.util.Iterator int
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        32: iload 9 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 24
        end local 9 // int i
        33: .line 743
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            ifnull 40
        34: .line 744
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 10
            goto 39
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int int java.util.Iterator top java.util.Iterator
      StackMap stack:
        35: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 9 /* state */
        start local 9 // int state
        36: .line 745
            aload 5 /* live */
            iload 9 /* state */
            invokevirtual jflex.state.StateSet.hasElement:(I)Z
            ifeq 39
        37: .line 746
            iconst_1
            istore 6 /* changed */
        38: .line 747
            aload 5 /* live */
            iload 7 /* s */
            invokevirtual jflex.state.StateSet.addState:(I)V
        end local 9 // int state
        39: .line 744
      StackMap locals:
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 35
        end local 7 // int s
        40: .line 732
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 21
        41: .line 729
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int
      StackMap stack:
            iload 6 /* changed */
            ifne 18
        42: .line 759
            aload 4 /* reachable */
            aload 5 /* live */
            invokevirtual jflex.state.StateSet.equals:(Ljava/lang/Object;)Z
            ifne 52
        43: .line 760
            aload 4 /* reachable */
            invokevirtual jflex.state.StateSet.iterator:()Ljava/util/Iterator;
            astore 8
            goto 51
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int top java.util.Iterator
      StackMap stack:
        44: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 7 /* s */
        start local 7 // int s
        45: .line 761
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        46: goto 49
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int int java.util.Iterator int
      StackMap stack:
        47: aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            iload 9 /* i */
            aaload
            ifnull 48
            aload 0 /* this */
            getfield jflex.core.NFA.table:[[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            iload 9 /* i */
            aaload
            aload 5 /* live */
            invokevirtual jflex.state.StateSet.intersect:(Ljflex/state/StateSet;)V
      StackMap locals:
      StackMap stack:
        48: iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        49: iload 9 /* i */
            aload 0 /* this */
            getfield jflex.core.NFA.numInput:I
            if_icmplt 47
        end local 9 // int i
        50: .line 762
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            ifnull 51
            aload 0 /* this */
            getfield jflex.core.NFA.epsilon:[Ljflex/state/StateSet;
            iload 7 /* s */
            aaload
            aload 5 /* live */
            invokevirtual jflex.state.StateSet.intersect:(Ljflex/state/StateSet;)V
        end local 7 // int s
        51: .line 760
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 44
        52: .line 769
      StackMap locals: jflex.core.NFA int int jflex.state.StateSet jflex.state.StateSet jflex.state.StateSet int
      StackMap stack:
            return
        end local 6 // boolean changed
        end local 5 // jflex.state.StateSet live
        end local 4 // jflex.state.StateSet reachable
        end local 3 // jflex.state.StateSet notvisited
        end local 2 // int end
        end local 1 // int start
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   53     0        this  Ljflex/core/NFA;
            0   53     1       start  I
            0   53     2         end  I
            1   53     3  notvisited  Ljflex/state/StateSet;
            2   53     4   reachable  Ljflex/state/StateSet;
            6   14     5       state  I
            9   14     6           i  I
           16   53     5        live  Ljflex/state/StateSet;
           17   53     6     changed  Z
           22   40     7           s  I
           23   33     9           i  I
           27   30    10       state  I
           36   39     9       state  I
           45   51     7           s  I
           46   50     9           i  I
    MethodParameters:
       Name  Flags
      start  
      end    

  private void insertCCLNFA(jflex.core.RegExp, int, int);
    descriptor: (Ljflex/core/RegExp;II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.core.RegExp regExp
        start local 2 // int start
        start local 3 // int end
         0: .line 786
            aload 1 /* regExp */
            getfield jflex.core.RegExp.type:I
            lookupswitch { // 4
                   41: 1
                   47: 7
                   55: 5
                   58: 9
              default: 11
          }
         1: .line 788
      StackMap locals:
      StackMap stack:
            aload 1 /* regExp */
            checkcast jflex.core.RegExp2
            astore 4 /* r */
        start local 4 // jflex.core.RegExp2 r
         2: .line 789
            aload 0 /* this */
            aload 4 /* r */
            getfield jflex.core.RegExp2.r1:Ljflex/core/RegExp;
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.insertCCLNFA:(Ljflex/core/RegExp;II)V
         3: .line 790
            aload 0 /* this */
            aload 4 /* r */
            getfield jflex.core.RegExp2.r2:Ljflex/core/RegExp;
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.insertCCLNFA:(Ljflex/core/RegExp;II)V
         4: .line 791
            return
        end local 4 // jflex.core.RegExp2 r
         5: .line 794
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast jflex.core.unicode.IntCharSet
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.insertClassNFA:(Ljflex/core/unicode/IntCharSet;II)V
         6: .line 795
            return
         7: .line 798
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.insertLetterNFA:(ZIII)V
         8: .line 799
            return
         9: .line 802
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual jflex.core.NFA.insertLetterNFA:(ZIII)V
        10: .line 803
            return
        11: .line 806
      StackMap locals:
      StackMap stack:
            new jflex.core.RegExpException
            dup
            aload 1 /* regExp */
            invokespecial jflex.core.RegExpException.<init>:(Ljflex/core/RegExp;)V
            athrow
        end local 3 // int end
        end local 2 // int start
        end local 1 // jflex.core.RegExp regExp
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Ljflex/core/NFA;
            0   12     1  regExp  Ljflex/core/RegExp;
            0   12     2   start  I
            0   12     3     end  I
            2    5     4       r  Ljflex/core/RegExp2;
    MethodParameters:
        Name  Flags
      regExp  
      start   
      end     

  public jflex.base.IntPair insertNFA(jflex.core.RegExp);
    descriptor: (Ljflex/core/RegExp;)Ljflex/base/IntPair;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // jflex.core.NFA this
        start local 1 // jflex.core.RegExp regExp
         0: .line 829
            aload 1 /* regExp */
            invokevirtual jflex.core.RegExp.isCharClass:()Z
            ifeq 7
         1: .line 830
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            istore 4 /* start */
        start local 4 // int start
         2: .line 831
            aload 0 /* this */
            getfield jflex.core.NFA.numStates:I
            iconst_1
            iadd
            istore 5 /* end */
        start local 5 // int end
         3: .line 833
            aload 0 /* this */
            iload 5 /* end */
            iconst_1
            iadd
            invokevirtual jflex.core.NFA.ensureCapacity:(I)V
         4: .line 834
            aload 0 /* this */
            iload 5 /* end */
            iconst_1
            iadd
            putfield jflex.core.NFA.numStates:I
         5: .line 836
            aload 0 /* this */
            aload 1 /* regExp */
            iload 4 /* start */
            iload 5 /* end */
            invokevirtual jflex.core.NFA.insertCCLNFA:(Ljflex/core/RegExp;II)V
         6: .line 838
            iload 4 /* start */
            iload 5 /* end */
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 5 // int end
        end local 4 // int start
         7: .line 841
      StackMap locals:
      StackMap stack:
            aload 1 /* regExp */
            getfield jflex.core.RegExp.type:I
            tableswitch { // 39 - 57
                   39: 23
                   40: 31
                   41: 8
                   42: 38
                   43: 45
                   44: 45
                   45: 41
                   46: 42
                   47: 45
                   48: 43
                   49: 45
                   50: 45
                   51: 45
                   52: 45
                   53: 45
                   54: 45
                   55: 45
                   56: 18
                   57: 44
              default: 45
          }
         8: .line 843
      StackMap locals:
      StackMap stack:
            aload 1 /* regExp */
            checkcast jflex.core.RegExp2
            astore 6 /* r */
        start local 6 // jflex.core.RegExp2 r
         9: .line 845
            aload 0 /* this */
            aload 6 /* r */
            getfield jflex.core.RegExp2.r1:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa1 */
        start local 2 // jflex.base.IntPair nfa1
        10: .line 846
            aload 0 /* this */
            aload 6 /* r */
            getfield jflex.core.RegExp2.r2:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 3 /* nfa2 */
        start local 3 // jflex.base.IntPair nfa2
        11: .line 848
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            iadd
            istore 4 /* start */
        start local 4 // int start
        12: .line 849
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_2
            iadd
            istore 5 /* end */
        start local 5 // int end
        13: .line 851
            aload 0 /* this */
            iload 4 /* start */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        14: .line 852
            aload 0 /* this */
            iload 4 /* start */
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        15: .line 853
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iload 5 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        16: .line 854
            aload 0 /* this */
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.end:()I
            iload 5 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        17: .line 856
            iload 4 /* start */
            iload 5 /* end */
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 6 // jflex.core.RegExp2 r
        end local 5 // int end
        end local 4 // int start
        end local 3 // jflex.base.IntPair nfa2
        end local 2 // jflex.base.IntPair nfa1
        18: .line 859
      StackMap locals:
      StackMap stack:
            aload 1 /* regExp */
            checkcast jflex.core.RegExp2
            astore 6 /* r */
        start local 6 // jflex.core.RegExp2 r
        19: .line 861
            aload 0 /* this */
            aload 6 /* r */
            getfield jflex.core.RegExp2.r1:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa1 */
        start local 2 // jflex.base.IntPair nfa1
        20: .line 862
            aload 0 /* this */
            aload 6 /* r */
            getfield jflex.core.RegExp2.r2:Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 3 /* nfa2 */
        start local 3 // jflex.base.IntPair nfa2
        21: .line 864
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        22: .line 866
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            aload 3 /* nfa2 */
            invokevirtual jflex.base.IntPair.end:()I
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 6 // jflex.core.RegExp2 r
        end local 3 // jflex.base.IntPair nfa2
        end local 2 // jflex.base.IntPair nfa1
        23: .line 869
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast jflex.core.RegExp
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa1 */
        start local 2 // jflex.base.IntPair nfa1
        24: .line 871
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            iadd
            istore 4 /* start */
        start local 4 // int start
        25: .line 872
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_2
            iadd
            istore 5 /* end */
        start local 5 // int end
        26: .line 874
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iload 5 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        27: .line 875
            aload 0 /* this */
            iload 4 /* start */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        28: .line 877
            aload 0 /* this */
            iload 4 /* start */
            iload 5 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        29: .line 878
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        30: .line 880
            iload 4 /* start */
            iload 5 /* end */
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 5 // int end
        end local 4 // int start
        end local 2 // jflex.base.IntPair nfa1
        31: .line 883
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast jflex.core.RegExp
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa1 */
        start local 2 // jflex.base.IntPair nfa1
        32: .line 885
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_1
            iadd
            istore 4 /* start */
        start local 4 // int start
        33: .line 886
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iconst_2
            iadd
            istore 5 /* end */
        start local 5 // int end
        34: .line 888
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            iload 5 /* end */
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        35: .line 889
            aload 0 /* this */
            iload 4 /* start */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        36: .line 891
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        37: .line 893
            iload 4 /* start */
            iload 5 /* end */
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 5 // int end
        end local 4 // int start
        end local 2 // jflex.base.IntPair nfa1
        38: .line 896
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast jflex.core.RegExp
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            astore 2 /* nfa1 */
        start local 2 // jflex.base.IntPair nfa1
        39: .line 898
            aload 0 /* this */
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            invokevirtual jflex.core.NFA.addEpsilonTransition:(II)V
        40: .line 900
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.start:()I
            aload 2 /* nfa1 */
            invokevirtual jflex.base.IntPair.end:()I
            invokestatic jflex.base.IntPair.create:(II)Ljflex/base/IntPair;
            areturn
        end local 2 // jflex.base.IntPair nfa1
        41: .line 903
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast jflex.core.RegExp
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            invokevirtual jflex.core.NFA.complement:(Ljflex/base/IntPair;)Ljflex/base/IntPair;
            areturn
        42: .line 906
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* regExp */
            invokevirtual jflex.core.RegExp.resolveTilde:()Ljflex/core/RegExp;
            invokevirtual jflex.core.NFA.insertNFA:(Ljflex/core/RegExp;)Ljflex/base/IntPair;
            areturn
        43: .line 909
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual jflex.core.NFA.insertStringNFA:(ZLjava/lang/String;)Ljflex/base/IntPair;
            areturn
        44: .line 912
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            aload 1 /* regExp */
            checkcast jflex.core.RegExp1
            getfield jflex.core.RegExp1.content:Ljava/lang/Object;
            checkcast java.lang.String
            invokevirtual jflex.core.NFA.insertStringNFA:(ZLjava/lang/String;)Ljflex/base/IntPair;
            areturn
        45: .line 915
      StackMap locals:
      StackMap stack:
            new jflex.core.RegExpException
            dup
            aload 1 /* regExp */
            invokespecial jflex.core.RegExpException.<init>:(Ljflex/core/RegExp;)V
            athrow
        end local 1 // jflex.core.RegExp regExp
        end local 0 // jflex.core.NFA this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   46     0    this  Ljflex/core/NFA;
            0   46     1  regExp  Ljflex/core/RegExp;
           10   18     2    nfa1  Ljflex/base/IntPair;
           20   23     2    nfa1  Ljflex/base/IntPair;
           24   31     2    nfa1  Ljflex/base/IntPair;
           32   38     2    nfa1  Ljflex/base/IntPair;
           39   41     2    nfa1  Ljflex/base/IntPair;
           11   18     3    nfa2  Ljflex/base/IntPair;
           21   23     3    nfa2  Ljflex/base/IntPair;
            2    7     4   start  I
           12   18     4   start  I
           25   31     4   start  I
           33   38     4   start  I
            3    7     5     end  I
           13   18     5     end  I
           26   31     5     end  I
           34   38     5     end  I
            9   18     6       r  Ljflex/core/RegExp2;
           19   23     6       r  Ljflex/core/RegExp2;
    MethodParameters:
        Name  Flags
      regExp  
}
SourceFile: "NFA.java"
InnerClasses:
  public ErrorMessage = jflex.l10n.ErrorMessages$ErrorMessage of jflex.l10n.ErrorMessages