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

◆ GetNextAvtLex()

static bool System.Xml.Xsl.XsltOld.Compiler.GetNextAvtLex ( string avt,
ref int start,
StringBuilder lex,
out bool isAvt )
inlinestaticprivate

Definition at line 728 of file Compiler.cs.

729 {
730 isAvt = false;
731 if (start == avt.Length)
732 {
733 return false;
734 }
735 lex.Length = 0;
737 if (lex.Length == 0)
738 {
739 isAvt = true;
741 }
742 return true;
743 }
static void getTextLex(string avt, ref int start, StringBuilder lex)
Definition Compiler.cs:648
static void getXPathLex(string avt, ref int start, StringBuilder lex)
Definition Compiler.cs:680

References System.Xml.Dictionary, and System.start.