예제 #1
0
 public AlternativeNode(MatchFactorNode firstFactor = null, AlternativeNode next = null)
 {
     Next = next;
     FirstFactor = firstFactor;
 }
예제 #2
0
 protected MatchFactorNode(UnaryOperatorType op = UnaryOperatorType.None, MatchFactorNode next = null)
 {
     OpType = op;
     Next = next;
 }
예제 #3
0
 public CharacterClassMatchNode(CharacterClass cClass, UnaryOperatorType op = UnaryOperatorType.None,
     MatchFactorNode next = null)
     : base(op, next)
 {
     MatchingCharacterClass = cClass;
 }