(node)
| 16887 | } |
| 16888 | ts.getSingleVariableOfVariableStatement = getSingleVariableOfVariableStatement; |
| 16889 | function getNestedModuleDeclaration(node) { |
| 16890 | return ts.isModuleDeclaration(node) && |
| 16891 | node.body && |
| 16892 | node.body.kind === 261 /* SyntaxKind.ModuleDeclaration */ |
| 16893 | ? node.body |
| 16894 | : undefined; |
| 16895 | } |
| 16896 | function getJSDocCommentsAndTags(hostNode, noCache) { |
| 16897 | var result; |
| 16898 | // Pull parameter comments from declaring function as well |
no outgoing calls
no test coverage detected