| 6 | ) |
| 7 | |
| 8 | type Expression struct { |
| 9 | // TODO: Add location token? |
| 10 | expr1 IEvaluator |
| 11 | expr2 IEvaluator |
| 12 | opToken *Token |
| 13 | } |
| 14 | |
| 15 | type relationalExpression struct { |
| 16 | // TODO: Add location token? |
nothing calls this directly
no outgoing calls
no test coverage detected