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

◆ IsStep()

static bool MS.Internal.Xml.XPath.XPathParser.IsStep ( XPathScanner::LexKind lexKind)
inlinestaticprivate

Definition at line 346 of file XPathParser.cs.

347 {
348 if (lexKind != XPathScanner.LexKind.Dot && lexKind != XPathScanner.LexKind.DotDot && lexKind != XPathScanner.LexKind.At && lexKind != XPathScanner.LexKind.Axe && lexKind != XPathScanner.LexKind.Star)
349 {
350 return lexKind == XPathScanner.LexKind.Name;
351 }
352 return true;
353 }

Referenced by MS.Internal.Xml.XPath.XPathParser.ParseLocationPath().