| 20 | } |
| 21 | |
| 22 | type simpleExpression struct { |
| 23 | negate bool |
| 24 | negativeSign bool |
| 25 | term1 IEvaluator |
| 26 | term2 IEvaluator |
| 27 | opToken *Token |
| 28 | } |
| 29 | |
| 30 | type term struct { |
| 31 | // TODO: Add location token? |
nothing calls this directly
no outgoing calls
no test coverage detected