(node)
| 14055 | } |
| 14056 | /* @internal */ |
| 14057 | function isDeclaration(node) { |
| 14058 | if (node.kind === 163 /* SyntaxKind.TypeParameter */) { |
| 14059 | return (node.parent && node.parent.kind !== 344 /* SyntaxKind.JSDocTemplateTag */) || ts.isInJSFile(node); |
| 14060 | } |
| 14061 | return isDeclarationKind(node.kind); |
| 14062 | } |
| 14063 | ts.isDeclaration = isDeclaration; |
| 14064 | /* @internal */ |
| 14065 | function isDeclarationStatement(node) { |
no test coverage detected