* */
| 365 | * |
| 366 | */ |
| 367 | Statement::Statement(eStatementType st, Block* b) |
| 368 | : eType(st), |
| 369 | func(b ? b->func : 0), |
| 370 | parent(b) |
| 371 | { |
| 372 | stm_id = Statement::sid; |
| 373 | Statement::sid++; |
| 374 | } |
| 375 | |
| 376 | /* |
| 377 | * |
nothing calls this directly
no outgoing calls
no test coverage detected