(classId: string)
| 431 | const edges: Edge[] = []; |
| 432 | const seen = new Set<string>(); |
| 433 | const methodsOf = (classId: string): Node[] => |
| 434 | queries |
| 435 | .getOutgoingEdges(classId, ['contains']) |
| 436 | .map((e) => queries.getNodeById(e.target)) |
| 437 | .filter((n): n is Node => !!n && n.kind === 'method'); |
| 438 | for (const cls of queries.getNodesByKind('class')) { |
| 439 | const subMethods = methodsOf(cls.id).filter((n) => n.language === 'cpp'); |
| 440 | if (subMethods.length === 0) continue; |
no test coverage detected