visitChildren abstract method
- InlineSpanVisitor visitor
Walks this InlineSpan and any descendants in pre-order and calls visitor
for each span that has content.
When visitor
returns true, the walk will continue. When visitor
returns
false, then the walk will end.
See also:
- visitDirectChildren, which preforms
build
-order traversal on the immediate children of this InlineSpan, regardless of whether they have content.
Implementation
bool visitChildren(InlineSpanVisitor visitor);