This type is a class for model objects.
An expression with an operator that has two operands, e.g. 3 + 4.
Package: instantiation| Attributes Summary | |
| operator : PTInfixOperator | The operator, e.g. + |
| leftOperand : PTExpression @ | * No description is available * |
| rightOperand : PTExpression @ | The right expression. i.e. 4 of "3 + 4" |
| extendedOperands : PTExpression * | Used when there are a series of infix operations of the same operator, e.g. 1 + 2 + 3 + 4. 1 and 2 will go into left and right, while {3, 4} will go into the extended operands. |
| Attribute Details |