InfixExpression represents an expression with an operator between two sub-expressions.
| 107 | |
| 108 | // InfixExpression represents an expression with an operator between two sub-expressions. |
| 109 | type InfixExpression struct { |
| 110 | Op token.Token // The operator token, e.g. and, or, not. |
| 111 | Left Expression // The left-hand side sub-expression. |
| 112 | Operator Operator // The operator as a string. |
| 113 | Right Expression // The right-hand side sub-expression. |
| 114 | } |
| 115 | |
| 116 | // expressionNode function on InfixExpression. |
| 117 | func (ie *InfixExpression) expressionNode() {} |
nothing calls this directly
no outgoing calls
no test coverage detected