(rel: string, content: string)
| 441 | let cg: CodeGraph; |
| 442 | |
| 443 | function write(rel: string, content: string) { |
| 444 | fs.writeFileSync(path.join(testDir, rel), content); |
| 445 | } |
| 446 | |
| 447 | function callersOf(fnName: string, kind: string = 'function'): string[] { |
| 448 | const results = cg.searchNodes(fnName); |
no test coverage detected