src/elements/visitor.ts
Abstract class that can be extended to walk a tree of elements. Whether this is a pre-order or post-order traversal depends on the moment when visitChildren is called from within the accept implementation.
Methods |
|
Abstract accept | |||||||||
accept(element: Element, context: T)
|
|||||||||
Parameters :
Returns :
void
|