(node)
| 18665 | } |
| 18666 | ts.getEffectiveReturnTypeNode = getEffectiveReturnTypeNode; |
| 18667 | function getJSDocTypeParameterDeclarations(node) { |
| 18668 | return ts.flatMap(ts.getJSDocTags(node), function (tag) { return isNonTypeAliasTemplate(tag) ? tag.typeParameters : undefined; }); |
| 18669 | } |
| 18670 | ts.getJSDocTypeParameterDeclarations = getJSDocTypeParameterDeclarations; |
| 18671 | /** template tags are only available when a typedef isn't already using them */ |
| 18672 | function isNonTypeAliasTemplate(tag) { |
nothing calls this directly
no test coverage detected