| 35 | } |
| 36 | |
| 37 | type power struct { |
| 38 | // TODO: Add location token? |
| 39 | power1 IEvaluator |
| 40 | power2 IEvaluator |
| 41 | } |
| 42 | |
| 43 | func (expr *Expression) FilterApplied(name string) bool { |
| 44 | return expr.expr1.FilterApplied(name) && (expr.expr2 == nil || |
nothing calls this directly
no outgoing calls
no test coverage detected