Esempio n. 1
0
 public NfaState(NfaStateKind kind)
 {
     this.Kind = kind;
     this.CSet = UnicodeIntSetType.Instance.Empty;
     this.Out  = new List <NfaState>();
 }
Esempio n. 2
0
 public NfaState(IntSet cset)
 {
     this.Kind = NfaStateKind.CSet;
     this.CSet = cset;
     this.Out  = new List <NfaState>();
 }