(decl)
| 63 | typespecs = _analyze.get_typespecs(types) |
| 64 | |
| 65 | def analyze_decl(decl): |
| 66 | return _analyze.analyze_decl( |
| 67 | decl, |
| 68 | typespecs, |
| 69 | knowntypespecs, |
| 70 | types, |
| 71 | knowntypes, |
| 72 | analyze_resolved=analyze_resolved, |
| 73 | ) |
| 74 | _analyze.analyze_type_decls(types, analyze_decl, handle_unresolved) |
| 75 | for decl in decls: |
| 76 | if decl in types: |
no outgoing calls
no test coverage detected
searching dependent graphs…