2 writes to _group
System (2)
regex\system\text\regularexpressions\RegexParser.cs (2)
1922
_group
= _alternation._next;
1946
_group
= openGroup;
17 references to _group
System (17)
regex\system\text\regularexpressions\RegexParser.cs (17)
1910
_group
._next = _stack;
1911
_alternation._next =
_group
;
1923
_stack =
_group
._next;
1926
if (
_group
.Type() == RegexNode.Testgroup &&
_group
.ChildCount() == 0) {
1930
_group
.AddChild(_unit);
1957
if (
_group
.Type() == RegexNode.Testgroup ||
_group
.Type() == RegexNode.Testref) {
1958
_group
.AddChild(_concatenation.ReverseLeft());
2037
if (
_group
.Type() == RegexNode.Testgroup ||
_group
.Type() == RegexNode.Testref) {
2038
_group
.AddChild(_concatenation.ReverseLeft());
2040
if (
_group
.Type() == RegexNode.Testref &&
_group
.ChildCount() > 2 ||
_group
.ChildCount() > 3)
2045
_group
.AddChild(_alternation);
2048
_unit =
_group
;