public RowRecogExprNodeNested(
     RowRecogNFATypeEnum type,
     RowRecogExprRepeatDesc optionalRepeat)
 {
     Type = type;
     OptionalRepeat = optionalRepeat;
 }
Beispiel #2
0
 /// <summary>
 ///     Ctor.
 /// </summary>
 /// <param name="tag">variable name</param>
 /// <param name="type">multiplicity and greedy indicator</param>
 /// <param name="optionalRepeat">optional repeating information</param>
 public RowRecogExprNodeAtom(
     string tag,
     RowRecogNFATypeEnum type,
     RowRecogExprRepeatDesc optionalRepeat)
 {
     Tag = tag;
     Type = type;
     OptionalRepeat = optionalRepeat;
 }