Package xbird.xquery.operator.math

Examples of xbird.xquery.operator.math.UnaryMinus


    public XQExpression staticAnalysis(StaticContext statEnv) throws XQueryException {
        if(!_analyzed) {
            this._analyzed = true;
            this._expr = _expr.staticAnalysis(statEnv);
            final UnaryMinus op = new UnaryMinus();
            op.staticAnalysis(statEnv, _expr);
            this._op = op;
            this._type = op.getReturnType();
        }
        return this;
    }
View Full Code Here

TOP

Related Classes of xbird.xquery.operator.math.UnaryMinus

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.