(node, name)
| 25440 | } |
| 25441 | // @api |
| 25442 | function updateNamespaceExport(node, name) { |
| 25443 | return node.name !== name |
| 25444 | ? update(createNamespaceExport(name), node) |
| 25445 | : node; |
| 25446 | } |
| 25447 | // @api |
| 25448 | function createNamedImports(elements) { |
| 25449 | var node = createBaseNode(269 /* SyntaxKind.NamedImports */); |
nothing calls this directly
no test coverage detected