class documentation
class CustomizableVisitor(Visitor[T]): (source)
A visitor that can be composed by other vistitors.
Subclasses must implement: - get_children() - all the required visit_*() methods - at least unknown_departure() such that it does not raise NotImplementedError
Method | __init__ |
Undocumented |
Method | depart |
Extend the base depart with extensions. |
Method | visit |
Extend the base visit with extensions. |
Instance Variable | extensions |
Undocumented |
Extend the base visit with extensions.
- Parameters:
- node: The node to visit.
Parameters | |
ob:T | Undocumented |