| 88 | struct bool_expr : value_expr { |
| 89 | virtual ~bool_expr() { } |
| 90 | bool_expr(prod *p) : value_expr(p) { type = scope->schema->booltype; } |
| 91 | static shared_ptr<bool_expr> factory(prod *p); |
| 92 | }; |
| 93 |
nothing calls this directly
no outgoing calls
no test coverage detected