public class jflex.core.EOFActions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: jflex.core.EOFActions
  super_class: java.lang.Object
{
  private final java.util.Map<java.lang.Integer, jflex.core.Action> actions;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljflex/core/Action;>;

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jflex.core.EOFActions this
         0: .line 22
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield jflex.core.EOFActions.actions:Ljava/util/Map;
         2: .line 22
            return
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljflex/core/EOFActions;

  public void setNumLexStates(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jflex.core.EOFActions this
        start local 1 // int num
         0: .line 36
            aload 0 /* this */
            iload 1 /* num */
            putfield jflex.core.EOFActions.numLexStates:I
         1: .line 37
            return
        end local 1 // int num
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljflex/core/EOFActions;
            0    2     1   num  I
    MethodParameters:
      Name  Flags
      num   

  public void add(java.util.List<java.lang.Integer>, jflex.core.Action);
    descriptor: (Ljava/util/List;Ljflex/core/Action;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // jflex.core.EOFActions this
        start local 1 // java.util.List stateList
        start local 2 // jflex.core.Action action
         0: .line 47
            aload 1 /* stateList */
            ifnull 6
            aload 1 /* stateList */
            invokeinterface java.util.List.size:()I
            ifle 6
         1: .line 48
            aload 1 /* stateList */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: jflex.core.EOFActions java.util.List jflex.core.Action top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 3 /* state */
        start local 3 // java.lang.Integer state
         3: aload 0 /* this */
            aload 3 /* state */
            aload 2 /* action */
            invokevirtual jflex.core.EOFActions.add:(Ljava/lang/Integer;Ljflex/core/Action;)V
        end local 3 // java.lang.Integer state
      StackMap locals:
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 49
            goto 14
         6: .line 50
      StackMap locals: jflex.core.EOFActions java.util.List jflex.core.Action
      StackMap stack:
            aload 0 /* this */
            aload 2 /* action */
            aload 0 /* this */
            getfield jflex.core.EOFActions.defaultAction:Ljflex/core/Action;
            invokevirtual jflex.core.Action.getHigherPriority:(Ljflex/core/Action;)Ljflex/core/Action;
            putfield jflex.core.EOFActions.defaultAction:Ljflex/core/Action;
         7: .line 52
            iconst_0
            istore 3 /* state */
        start local 3 // int state
         8: goto 13
         9: .line 53
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            iload 3 /* state */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 12
        10: .line 54
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            iload 3 /* state */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast jflex.core.Action
            astore 4 /* oldAction */
        start local 4 // jflex.core.Action oldAction
        11: .line 55
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            iload 3 /* state */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 4 /* oldAction */
            aload 2 /* action */
            invokevirtual jflex.core.Action.getHigherPriority:(Ljflex/core/Action;)Ljflex/core/Action;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 4 // jflex.core.Action oldAction
        12: .line 52
      StackMap locals:
      StackMap stack:
            iinc 3 /* state */ 1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* state */
            aload 0 /* this */
            getfield jflex.core.EOFActions.numLexStates:I
            if_icmplt 9
        end local 3 // int state
        14: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 2 // jflex.core.Action action
        end local 1 // java.util.List stateList
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Ljflex/core/EOFActions;
            0   15     1  stateList  Ljava/util/List<Ljava/lang/Integer;>;
            0   15     2     action  Ljflex/core/Action;
            3    4     3      state  Ljava/lang/Integer;
            8   14     3      state  I
           11   12     4  oldAction  Ljflex/core/Action;
    Signature: (Ljava/util/List<Ljava/lang/Integer;>;Ljflex/core/Action;)V
    MethodParameters:
           Name  Flags
      stateList  
      action     

  public void add(java.lang.Integer, jflex.core.Action);
    descriptor: (Ljava/lang/Integer;Ljflex/core/Action;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // jflex.core.EOFActions this
        start local 1 // java.lang.Integer state
        start local 2 // jflex.core.Action action
         0: .line 68
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            aload 1 /* state */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnonnull 1
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            aload 1 /* state */
            aload 2 /* action */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
            goto 3
         1: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            aload 1 /* state */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast jflex.core.Action
            astore 3 /* oldAction */
        start local 3 // jflex.core.Action oldAction
         2: .line 71
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            aload 1 /* state */
            aload 3 /* oldAction */
            aload 2 /* action */
            invokevirtual jflex.core.Action.getHigherPriority:(Ljflex/core/Action;)Ljflex/core/Action;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // jflex.core.Action oldAction
         3: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 2 // jflex.core.Action action
        end local 1 // java.lang.Integer state
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljflex/core/EOFActions;
            0    4     1      state  Ljava/lang/Integer;
            0    4     2     action  Ljflex/core/Action;
            2    3     3  oldAction  Ljflex/core/Action;
    MethodParameters:
        Name  Flags
      state   
      action  

  public boolean isEOFAction(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // jflex.core.EOFActions this
        start local 1 // java.lang.Object a
         0: .line 76
            aload 1 /* a */
            aload 0 /* this */
            getfield jflex.core.EOFActions.defaultAction:Ljflex/core/Action;
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: jflex.core.EOFActions java.lang.Object top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jflex.core.Action
            astore 2 /* action */
        start local 2 // jflex.core.Action action
         3: aload 1 /* a */
            aload 2 /* action */
            if_acmpne 4
            iconst_1
            ireturn
        end local 2 // jflex.core.Action action
      StackMap locals:
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 80
            iconst_0
            ireturn
        end local 1 // java.lang.Object a
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljflex/core/EOFActions;
            0    6     1       a  Ljava/lang/Object;
            3    4     2  action  Ljflex/core/Action;
    MethodParameters:
      Name  Flags
      a     

  public jflex.core.Action getAction(int);
    descriptor: (I)Ljflex/core/Action;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jflex.core.EOFActions this
        start local 1 // int state
         0: .line 90
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            iload 1 /* state */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast jflex.core.Action
            areturn
        end local 1 // int state
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljflex/core/EOFActions;
            0    1     1  state  I
    MethodParameters:
       Name  Flags
      state  

  public jflex.core.Action getDefault();
    descriptor: ()Ljflex/core/Action;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.EOFActions this
         0: .line 99
            aload 0 /* this */
            getfield jflex.core.EOFActions.defaultAction:Ljflex/core/Action;
            areturn
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/EOFActions;

  public int numActions();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jflex.core.EOFActions this
         0: .line 108
            aload 0 /* this */
            getfield jflex.core.EOFActions.actions:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            ireturn
        end local 0 // jflex.core.EOFActions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljflex/core/EOFActions;
}
SourceFile: "EOFActions.java"