(raw: str)
| 699 | "name": name, |
| 700 | "library": library, |
| 701 | # Only an edge whose target is a class we actually recovered. |
| 702 | "super_class": super_id if super_id is not None and super_id != cid else None, |
| 703 | "provenance": DERIVED, |
| 704 | } |
| 705 | ) |
| 706 | return libraries, classes, functions |
| 707 | |
| 708 |