(declaration)
| 89264 | return !ts.isAccessor(declaration); |
| 89265 | } |
| 89266 | function isNotOverload(declaration) { |
| 89267 | return (declaration.kind !== 256 /* SyntaxKind.FunctionDeclaration */ && declaration.kind !== 169 /* SyntaxKind.MethodDeclaration */) || |
| 89268 | !!declaration.body; |
| 89269 | } |
| 89270 | /** Like 'isDeclarationName', but returns true for LHS of `import { x as y }` or `export { x as y }`. */ |
| 89271 | function isDeclarationNameOrImportPropertyName(name) { |
| 89272 | switch (name.parent.kind) { |
no outgoing calls
no test coverage detected
searching dependent graphs…