Exemple #1
0
		internal XPathParser (System.Xml.Xsl.IStaticXsltContext context)
#endif
		{
			Context = context;
			ErrorOutput = System.IO.TextWriter.Null;
//			debug = new yydebug.yyDebugSimple ();
		}
Exemple #2
0
        internal static XPathExpression Compile(string xpath,
                                                NSResolver nsmgr, System.Xml.Xsl.IStaticXsltContext ctx)
        {
            XPathParser     parser = new XPathParser(ctx);
            XPathExpression x      = new CompiledExpression(
                xpath, parser.Compile(xpath));

            x.SetContext(nsmgr);
            return(x);
        }
Exemple #3
0
 internal virtual XPathExpression Compile(string xpath, System.Xml.Xsl.IStaticXsltContext ctx)
 {
     return(XPathExpression.Compile(xpath, null, ctx));
 }