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

◆ CompileNodeSetExpression()

QilNode System.Xml.Xsl.Xslt.QilGenerator.CompileNodeSetExpression ( string expr)
inlineprivate

Definition at line 1813 of file QilGenerator.cs.

1814 {
1816 if (qilNode == null)
1817 {
1818 XPathCompileException ex = new XPathCompileException(expr, 0, expr.Length, System.SR.XPath_NodeSetExpected, (string[])null);
1819 if (_xslVersion != XslVersion.ForwardsCompatible)
1820 {
1822 }
1823 qilNode = _f.Error(_f.String(ex.Message));
1824 }
1825 return qilNode;
1826 }
static string XPath_NodeSetExpected
Definition SR.cs:1856
Definition SR.cs:7
QilNode Error(string res, QilNode args)
QilNode CompileXPathExpression(string expr)
void ReportErrorInXPath(XslLoadException e)
readonly XsltQilFactory _f

References System.Xml.Xsl.Xslt.QilGenerator._f, System.Xml.Xsl.Xslt.QilGenerator._xslVersion, System.Xml.Xsl.Xslt.QilGenerator.CompileXPathExpression(), System.Xml.Dictionary, System.Xml.Xsl.XPath.XPathQilFactory.Error(), System.Xml.Xsl.Xslt.QilGenerator.ReportErrorInXPath(), System.Xml.Xsl.Qil.QilPatternFactory.String(), System.Xml.Xsl.XPath.XPathQilFactory.TryEnsureNodeSet(), and System.SR.XPath_NodeSetExpected.

Referenced by System.Xml.Xsl.Xslt.QilGenerator.CompileApplyTemplates(), and System.Xml.Xsl.Xslt.QilGenerator.CompileForEach().