Package client.net.sf.saxon.ce.value

Examples of client.net.sf.saxon.ce.value.SingletonClosure


            b.setNotExecuting(this);
            if (err instanceof XPathException.Circularity) {
                err.setErrorCode("XTDE0640");
                err.setXPathContext(context);
                // Detect it more quickly the next time (in a pattern, the error is recoverable)
                SingletonClosure closure = new SingletonClosure(new ErrorExpression(err), context);
                b.defineGlobalVariable(this, closure);
                err.setLocator(getSourceLocator());
                throw err;
            } else {
                throw err;
View Full Code Here

TOP

Related Classes of client.net.sf.saxon.ce.value.SingletonClosure

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.