Binary expressions, including Additive operations, Multiplicative operations, Bitwise
operations, and more.
Marks all code locations that perform binary operations, that is, expressions with a left and
right operands. E.g.,
a + b.
Unary expressions have two input Intermediate values:
- #1 Left Operand The left operand for the binary operation.
- #2 Right Operand The right operand for the binary operation.
Tagged nodes provide the following metadata:
- operator A
String representation of the operator. Examples are:
+, * etc.