* Specialized visitor that visits the immediate children of a namespace. * * @param node The node to visit.
(node)
| 91769 | * @param node The node to visit. |
| 91770 | */ |
| 91771 | function namespaceElementVisitor(node) { |
| 91772 | return saveStateAndInvoke(node, namespaceElementVisitorWorker); |
| 91773 | } |
| 91774 | /** |
| 91775 | * Specialized visitor that visits the immediate children of a namespace. |
| 91776 | * |
nothing calls this directly
no test coverage detected