| 13 | } |
| 14 | |
| 15 | type relationalExpression struct { |
| 16 | // TODO: Add location token? |
| 17 | expr1 IEvaluator |
| 18 | expr2 IEvaluator |
| 19 | opToken *Token |
| 20 | } |
| 21 | |
| 22 | type simpleExpression struct { |
| 23 | negate bool |
nothing calls this directly
no outgoing calls
no test coverage detected