| 349 | } |
| 350 | |
| 351 | modifying_stmt::modifying_stmt(prod *p, struct scope *s, table *victim) |
| 352 | : prod(p), myscope(s) |
| 353 | { |
| 354 | scope = &myscope; |
| 355 | scope->tables = s->tables; |
| 356 | |
| 357 | if (!victim) |
| 358 | pick_victim(); |
| 359 | } |
| 360 | |
| 361 | |
| 362 | delete_stmt::delete_stmt(prod *p, struct scope *s, table *v) |
nothing calls this directly
no outgoing calls
no test coverage detected