(classId: string)
| 769 | const edges: Edge[] = []; |
| 770 | const seen = new Set<string>(); |
| 771 | const methodsOf = (classId: string): Node[] => |
| 772 | queries |
| 773 | .getOutgoingEdges(classId, ['contains']) |
| 774 | .map((e) => queries.getNodeById(e.target)) |
| 775 | .filter((n): n is Node => !!n && n.kind === 'method'); |
| 776 | for (const cls of queries.iterateNodesByKind('class')) { |
| 777 | if ((++scanned255 & 63) === 0) await onYield(); |
| 778 | const subMethods = methodsOf(cls.id).filter((n) => n.language === 'cpp'); |
no test coverage detected