* */
| 431 | * |
| 432 | */ |
| 433 | StatementAssign::~StatementAssign(void) |
| 434 | { |
| 435 | if (rhs != &expr) { |
| 436 | delete rhs; |
| 437 | } |
| 438 | delete &lhs; |
| 439 | delete &expr; |
| 440 | if (op_flags) |
| 441 | delete op_flags; |
| 442 | } |
| 443 | |
| 444 | /* |
| 445 | * output assign operator |
nothing calls this directly
no outgoing calls
no test coverage detected