13 references to RegexNode
System (13)
regex\system\text\regularexpressions\RegexNode.cs (5)
232return new RegexNode(emptyType, _options); 302return min == Int32.MaxValue ? new RegexNode(Nothing, _options) : u; 359return new RegexNode(RegexNode.Nothing, _options); 461return new RegexNode(RegexNode.Empty, _options); 533return new RegexNode(RegexNode.Empty, _options);
regex\system\text\regularexpressions\RegexParser.cs (8)
447_concatenation = new RegexNode(RegexNode.Concatenate, _options); 657return new RegexNode(RegexNode.Group, _options); 863return new RegexNode(NodeType, _options); 935return new RegexNode(TypeFromCode(ch), _options); 1947_alternation = new RegexNode(RegexNode.Alternate, _options); 1948_concatenation = new RegexNode(RegexNode.Concatenate, _options); 1964_concatenation = new RegexNode(RegexNode.Concatenate, _options); 2030_unit = new RegexNode(type, _options);