| 161 | }; |
| 162 | |
| 163 | struct comparison_op : bool_binop { |
| 164 | op *oper; |
| 165 | comparison_op(prod *p); |
| 166 | virtual ~comparison_op() { }; |
| 167 | virtual void out(std::ostream &o) { |
| 168 | o << *lhs << " " << oper->name << " " << *rhs; |
| 169 | } |
| 170 | }; |
| 171 | |
| 172 | struct window_function : value_expr { |
| 173 | virtual void out(std::ostream &out); |
nothing calls this directly
no outgoing calls
no test coverage detected