Exemple #1
0
 public NFA(NFAState entry, NFAState exit, RegExType type)
 {
     this.entry = entry;
     this.exit  = exit;
     this.type  = type;
 }
Exemple #2
0
 public NFAState(RegExType type)
 {
     ID++;
     instanceID = ID;
     this.type  = type;
 }
 protected RegExNode(RegExType regExType)
 {
     RegExType = regExType;
 }