()
| 81786 | function checkFunctionDeclaration(node) { |
| 81787 | addLazyDiagnostic(checkFunctionDeclarationDiagnostics); |
| 81788 | function checkFunctionDeclarationDiagnostics() { |
| 81789 | checkFunctionOrMethodDeclaration(node); |
| 81790 | checkGrammarForGenerator(node); |
| 81791 | checkCollisionsForDeclarationName(node, node.name); |
| 81792 | } |
| 81793 | } |
| 81794 | function checkJSDocTypeAliasTag(node) { |
| 81795 | if (!node.typeExpression) { |
nothing calls this directly
no test coverage detected