Class ArithmeticExpression

java.lang.Object
gw.internal.gosu.parser.ParsedElement
gw.internal.gosu.parser.Expression
gw.internal.gosu.parser.expressions.ArithmeticExpression
All Implemented Interfaces:
IArithmeticExpression, IOverridableOperation, IExpression, IHasType, IParsedElement
Direct Known Subclasses:
AdditiveExpression, BitshiftExpression, BitwiseAndExpression, BitwiseOrExpression, BitwiseXorExpression, MultiplicativeExpression

public abstract class ArithmeticExpression extends Expression implements IArithmeticExpression
The base class for arithmetic expressions with binary operators e.g., + - * / %. Models arithmetic expressions by encapsulating the left and right hand side operands.