| 7 | ) |
| 8 | |
| 9 | type conditional struct { |
| 10 | sctx *super.Context |
| 11 | predicate Evaluator |
| 12 | thenExpr Evaluator |
| 13 | elseExpr Evaluator |
| 14 | } |
| 15 | |
| 16 | func NewConditional(sctx *super.Context, predicate, thenExpr, elseExpr Evaluator) Evaluator { |
| 17 | return &conditional{ |
nothing calls this directly
no outgoing calls
no test coverage detected