(node, comment, tags)
| 25985 | } |
| 25986 | // @api |
| 25987 | function updateJSDocComment(node, comment, tags) { |
| 25988 | return node.comment !== comment |
| 25989 | || node.tags !== tags |
| 25990 | ? update(createJSDocComment(comment, tags), node) |
| 25991 | : node; |
| 25992 | } |
| 25993 | // |
| 25994 | // JSX |
| 25995 | // |
nothing calls this directly
no test coverage detected