ROSE
0.11.21.0
|
Base class for visiting nodes during expression traversal.
The preVisit method is called before children are visited, and the postVisit method is called after children are visited. If preVisit returns TRUNCATE, then the children are not visited, but the postVisit method is still called. If either method returns TERMINATE then the traversal is immediately terminated.
Definition at line 211 of file BinarySymbolicExpr.h.
#include <BinarySymbolicExpr.h>
Public Member Functions | |
virtual VisitAction | preVisit (const Ptr &)=0 |
virtual VisitAction | postVisit (const Ptr &)=0 |