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

◆ IsAtomicByParent()

bool System.Text.RegularExpressions.RegexNode.IsAtomicByParent ( )
inline

Definition at line 221 of file RegexNode.cs.

222 {
223 RegexNode next = Next;
224 if (next == null)
225 {
226 return false;
227 }
228 if (next.Type == 32)
229 {
230 return true;
231 }
232 if ((next.Type != 25 && next.Type != 28) || next.Child(next.ChildCount() - 1) != this)
233 {
234 return false;
235 }
236 next = next.Next;
237 if (next != null)
238 {
239 return next.Type == 32;
240 }
241 return false;
242 }
RegexNode(int type, RegexOptions options)
Definition RegexNode.cs:23

References System.Text.RegularExpressions.RegexNode.Child(), System.Text.RegularExpressions.RegexNode.ChildCount(), System.Text.RegularExpressions.RegexNode.Next, and System.Text.RegularExpressions.RegexNode.Type.