Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PostOrderVisitor ¶
type PostOrderVisitor interface {
Visitor
PostOrderVisit(*Expression)
}
PostOrderVisitor is the interface that must be implemented by a visitor that wants to be notified about expressions after all of the expression's sub expressions are visited.
type PreOrderVisitor ¶
type PreOrderVisitor interface {
Visitor
PreOrderVisit(*Expression)
}
PreOrderVisitor is the interface that must be implemented by a visitor that wants to be notified about expressions before any of the expression's sub expressions is visited.
Click to show internal directories.
Click to hide internal directories.