Package org.apache.imperius.spl.parser.expressions.impl

Examples of org.apache.imperius.spl.parser.expressions.impl.UnaryMinusExpression


      validateExpr = false;
    }
    switch (type)
    {
    case SPLTreeParserTokenTypes.UNARY_MINUS:
      returnExpr = new UnaryMinusExpression(exprList, validateExpr);
      break;

    case SPLTreeParserTokenTypes.UNARY_PLUS:
      returnExpr = new UnaryPlusExpression(exprList, validateExpr);
      break;
View Full Code Here

TOP

Related Classes of org.apache.imperius.spl.parser.expressions.impl.UnaryMinusExpression

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.