| 70 | |
| 71 | |
| 72 | class VTableMethod(NamedTuple): |
| 73 | cls: "ClassIR" # noqa: UP037 |
| 74 | name: str |
| 75 | method: FuncIR |
| 76 | shadow_method: FuncIR | None |
| 77 | |
| 78 | |
| 79 | VTableEntries = list[VTableMethod] |
no outgoing calls
no test coverage detected
searching dependent graphs…