(rout)
| 574 | |
| 575 | |
| 576 | def containsderivedtypes(rout): |
| 577 | if hasderivedtypes(rout): |
| 578 | return 1 |
| 579 | if hasbody(rout): |
| 580 | for b in rout['body']: |
| 581 | if hasderivedtypes(b): |
| 582 | return 1 |
| 583 | return 0 |
| 584 | |
| 585 | |
| 586 | def containsmodule(block): |
no test coverage detected
searching dependent graphs…