Package net.mitza.rel.parser.expression

Examples of net.mitza.rel.parser.expression.ComparatorExpressionNode


    // comp_op -> COMPARATOR expression comp_op
    if (lookahead.tokenType == TokenTypes.COMPARATOR) {
      String operator = lookahead.sequence;
      nextToken();
      ExpressionNode rightHand = mathematicalExpression();
      return new ComparatorExpressionNode(leftHand, rightHand, operator);
    }

    // comp_op -> EPSILON
    return leftHand;
  }
View Full Code Here

TOP

Related Classes of net.mitza.rel.parser.expression.ComparatorExpressionNode

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.