Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ InsertChild()

void System.Text.RegularExpressions.RegexNode.InsertChild ( int index,
RegexNode newChild )
inline

Definition at line 1446 of file RegexNode.cs.

1447 {
1448 newChild.Next = this;
1449 newChild = newChild.Reduce();
1450 newChild.Next = this;
1452 }

References System.Text.RegularExpressions.RegexNode.Children, and System.index.

Referenced by System.Text.RegularExpressions.RegexNode.FinalOptimize().