blob: a211d125941dc719ab336066ea83719c5d14519b [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001, 2002.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.debug.eval.ast.instructions;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jdt.debug.core.IJavaPrimitiveValue;
public class UnaryPlusOperator extends UnaryOperator {
public UnaryPlusOperator(int expressionTypeId, int start) {
super(expressionTypeId, start);
}
/*
* @see Instruction#execute()
*/
public void execute() throws CoreException {
IJavaPrimitiveValue value= (IJavaPrimitiveValue)popValue();
switch (fExpressionTypeId) {
case T_double:
pushNewValue(+value.getDoubleValue());
break;
case T_float:
pushNewValue(+value.getFloatValue());
break;
case T_long:
pushNewValue(+value.getLongValue());
break;
case T_byte:
case T_short:
case T_int:
case T_char:
pushNewValue(+value.getIntValue());
break;
}
}
public String toString() {
return InstructionsEvaluationMessages.getString("UnaryPlusOperator.unary_plus_operator_1"); //$NON-NLS-1$
}
}