(kind, node, type)
| 25619 | // updateJSDocVariadicType |
| 25620 | // updateJSDocNamepathType |
| 25621 | function updateJSDocUnaryTypeWorker(kind, node, type) { |
| 25622 | return node.type !== type |
| 25623 | ? update(createJSDocUnaryTypeWorker(kind, type), node) |
| 25624 | : node; |
| 25625 | } |
| 25626 | // @api |
| 25627 | function createJSDocFunctionType(parameters, type) { |
| 25628 | var node = createBaseSignatureDeclaration(317 /* SyntaxKind.JSDocFunctionType */, |
no test coverage detected