| 167 | }; |
| 168 | |
| 169 | struct modifying_stmt : prod { |
| 170 | table *victim; |
| 171 | struct scope myscope; |
| 172 | modifying_stmt(prod *p, struct scope *s, struct table *victim = 0); |
| 173 | // shared_ptr<modifying_stmt> modifying_stmt::factory(prod *p, struct scope *s); |
| 174 | virtual void pick_victim(); |
| 175 | }; |
| 176 | |
| 177 | struct delete_stmt : modifying_stmt { |
| 178 | shared_ptr<bool_expr> search; |
nothing calls this directly
no outgoing calls
no test coverage detected