|
Class Summary |
| Addition |
Represents a + b, the addition of two expressions |
| ArithmeticInstruction |
The base class of any binary expression, e.g., a + b, a - b, or, in future
use, a < b and so on. |
| Division |
Represents a / b, the division of two expressions |
| Multiplication |
Represents a x b, the multiplication of two expressions |
| Negation |
Represents unary minus, e.g., -expression |
| NumericInstruction |
|
| Remainder |
Represents the remainder when two numbers are divided |
| Subtraction |
Represents a - b, the subtraction of two expressions |
| UnaryExpression |
|