Package org.eclipse.jdt.core.dom.PrefixExpression

Examples of org.eclipse.jdt.core.dom.PrefixExpression.Operator


  }

  private boolean isReplacedByConstantValue(PrefixExpression node) {
    // for '-', '+', '~' and '!', if the operand is a constant value,
    // the expression is replaced by a constant value
    Operator operator = node.getOperator();
    if (operator != PrefixExpression.Operator.INCREMENT
        && operator != PrefixExpression.Operator.DECREMENT) {
      return isReplacedByConstantValue(node.getOperand());
    }
    return false;
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.core.dom.PrefixExpression.Operator

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.