(rout)
| 560 | |
| 561 | |
| 562 | def containscommon(rout): |
| 563 | if hascommon(rout): |
| 564 | return 1 |
| 565 | if hasbody(rout): |
| 566 | for b in rout['body']: |
| 567 | if containscommon(b): |
| 568 | return 1 |
| 569 | return 0 |
| 570 | |
| 571 | |
| 572 | def hasderivedtypes(rout): |
no test coverage detected
searching dependent graphs…