(node, isTypeOnly, propertyName, name)
| 25549 | } |
| 25550 | // @api |
| 25551 | function updateExportSpecifier(node, isTypeOnly, propertyName, name) { |
| 25552 | return node.isTypeOnly !== isTypeOnly |
| 25553 | || node.propertyName !== propertyName |
| 25554 | || node.name !== name |
| 25555 | ? update(createExportSpecifier(isTypeOnly, propertyName, name), node) |
| 25556 | : node; |
| 25557 | } |
| 25558 | // @api |
| 25559 | function createMissingDeclaration() { |
| 25560 | var node = createBaseDeclaration(276 /* SyntaxKind.MissingDeclaration */, |
nothing calls this directly
no test coverage detected