Package org.eclipse.jdt.internal.compiler.ast

Examples of org.eclipse.jdt.internal.compiler.ast.IntLiteral


  //this.intStack have the position of the operator

  Expression r, exp = this.expressionStack[this.expressionPtr];
  if (op == MINUS) {
    if (exp instanceof IntLiteral) {
      IntLiteral intLiteral = (IntLiteral) exp;
      IntLiteral convertToMinValue = intLiteral.convertToMinValue();
      if (convertToMinValue ==  intLiteral) {
        // not a min value literal so we convert it to an unary expression
        r = new UnaryExpression(exp, op);
      } else {
        r = convertToMinValue;
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.compiler.ast.IntLiteral

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.