(node: ts.Node)
| 56 | } |
| 57 | |
| 58 | export function logNodeInfo(node: ts.Node): void { |
| 59 | console.log(`kind: ${getSyntaxKindString(node.kind)} text: ${node.getFullText()}`); |
| 60 | } |
| 61 | |
| 62 | export function uniqueNameFromNode(moduleName: string, node: ts.Node): string { |
| 63 | return `tsn_${moduleName}_node_${node.getStart()}_${node.getEnd()}`; |
nothing calls this directly
no test coverage detected