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

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


        r = new UnaryExpression(exp, op);
      } else {
        r = convertToMinValue;
      }
    } else if (exp instanceof LongLiteral) {
      LongLiteral longLiteral = (LongLiteral) exp;
      LongLiteral convertToMinValue = longLiteral.convertToMinValue();
      if (convertToMinValue ==  longLiteral) {
        // 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.LongLiteral

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.