(fnName: string)
| 1621 | (n) => n.name === 'log' && n.filePath.replace(/\\/g, '/').endsWith(`${dir}/svc.cpp`), |
| 1622 | )!; |
| 1623 | const callTargets = (fnName: string) => |
| 1624 | cg |
| 1625 | .getOutgoingEdges(cg.getNodesByKind('function').find((n) => n.name === fnName)!.id) |
| 1626 | .filter((e) => e.kind === 'calls') |
| 1627 | .map((e) => e.target); |
| 1628 | |
| 1629 | const logA = logInDir('a'); |
| 1630 | const logB = logInDir('b'); |
no test coverage detected