blob: 19ecf144e71b69b6b4990e4210cea30ac034846f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.compiler.ast;
import org.eclipse.jdt.internal.compiler.ASTVisitor;
import org.eclipse.jdt.internal.compiler.lookup.*;
public class PrefixExpression extends CompoundAssignment {
/**
* PrefixExpression constructor comment.
* @param lhs org.eclipse.jdt.internal.compiler.ast.Expression
* @param expression org.eclipse.jdt.internal.compiler.ast.Expression
* @param operator int
*/
public PrefixExpression(Expression lhs, Expression expression, int operator, int pos) {
super(lhs, expression, operator, lhs.sourceEnd);
this.sourceStart = pos;
this.sourceEnd = lhs.sourceEnd;
}
public boolean checkCastCompatibility() {
return false;
}
public String operatorToString() {
switch (this.operator) {
case PLUS :
return "++"; //$NON-NLS-1$
case MINUS :
return "--"; //$NON-NLS-1$
}
return "unknown operator"; //$NON-NLS-1$
}
public StringBuffer printExpressionNoParenthesis(int indent, StringBuffer output) {
output.append(operatorToString()).append(' ');
return this.lhs.printExpression(0, output);
}
public boolean restrainUsageToNumericTypes() {
return true;
}
public void traverse(ASTVisitor visitor, BlockScope scope) {
if (visitor.visit(this, scope)) {
this.lhs.traverse(visitor, scope);
}
visitor.endVisit(this, scope);
}
}