(fnName: string)
| 1882 | (n) => n.name === 'log' && n.filePath.replace(/\\/g, '/').endsWith(`${dir}/svc.cpp`), |
| 1883 | )!; |
| 1884 | const callTargets = (fnName: string) => |
| 1885 | cg |
| 1886 | .getOutgoingEdges(cg.getNodesByKind('function').find((n) => n.name === fnName)!.id) |
| 1887 | .filter((e) => e.kind === 'calls') |
| 1888 | .map((e) => e.target); |
| 1889 | |
| 1890 | const logA = logInDir('a'); |
| 1891 | const logB = logInDir('b'); |
no test coverage detected