ROSE 0.11.145.147
|
Mechanism for traversing the AST and computing attributes.
This AST Processing Mechanism allows to traverse the AST and to compute inherited and synthesized attributes. The interfaces:
@item SimpleProcessing provides a pre- and postorder traversal of the AST. The user needs to implement one visit function. @item The TopDownProcessing - provides the computation of inherited attributes using a pre-order traversal. @item The BottomUpProcessing - provides the computation of synthesized attributes using a post-order traversal. @item The BottomUpTopDownProcessing - provides the computation of inherited and synthesized attributes.
The classes have pure virtual functions. You must inherit and implement the required methods.
Classes | |
class | AstSimpleProcessing |
Class for traversing the AST. More... | |
class | AstTopDownProcessing< InheritedAttributeType > |
Attribute Evaluator for inherited attributes. More... | |
class | AstBottomUpProcessing< SynthesizedAttributeType > |
Attribute Evaluator for synthesized attributes. More... | |
class | AstTopDownBottomUpProcessing< InheritedAttributeType, SynthesizedAttributeType > |
Attribute Evaluator for inherited and synthesized attributes. More... | |