(path: Path.Path, root: string, location: string)
| 33 | } |
| 34 | |
| 35 | const normalizedPath = (path: Path.Path, root: string, location: string): string => |
| 36 | path.relative(root, location).split(path.sep).join("/") |
| 37 | |
| 38 | const sourceLocation = (path: Path.Path, root: string, node: ts.Node): SourceLocation => { |
| 39 | const source = node.getSourceFile() |
no test coverage detected