| 118 | }; |
| 119 | |
| 120 | struct exists_predicate : bool_expr { |
| 121 | shared_ptr<struct query_spec> subquery; |
| 122 | virtual ~exists_predicate() { } |
| 123 | exists_predicate(prod *p); |
| 124 | virtual void out(std::ostream &out); |
| 125 | virtual void accept(prod_visitor *v); |
| 126 | }; |
| 127 | |
| 128 | struct bool_binop : bool_expr { |
| 129 | shared_ptr<value_expr> lhs, rhs; |
nothing calls this directly
no outgoing calls
no test coverage detected