* Specialized visitor that visits the immediate children of a class with TypeScript syntax. * * @param node The node to visit.
(node)
| 91796 | * @param node The node to visit. |
| 91797 | */ |
| 91798 | function classElementVisitor(node) { |
| 91799 | return saveStateAndInvoke(node, classElementVisitorWorker); |
| 91800 | } |
| 91801 | /** |
| 91802 | * Specialized visitor that visits the immediate children of a class with TypeScript syntax. |
| 91803 | * |
nothing calls this directly
no test coverage detected
searching dependent graphs…