(node: ts.Node, message: string)
| 1358 | } |
| 1359 | |
| 1360 | private onError(node: ts.Node, message: string): never { |
| 1361 | const { line, character } = node.getSourceFile().getLineAndCharacterOfPosition(node.getStart()); |
| 1362 | throw new Error(`${message} at (${line + 1},${character + 1}) (node content: ${node.getText()})`); |
| 1363 | } |
| 1364 | |
| 1365 | private log(node: ts.Node, message: string) { |
| 1366 | const { line, character } = node.getSourceFile().getLineAndCharacterOfPosition(node.getStart()); |
no test coverage detected