#include <ast.h>
Inheritance diagram for AST::Assignment:

Public Member Functions | |
| Assignment () | |
| virtual void | to3ACFile (FILE *f) |
| convert me to 3ac - subclassed | |
Public Attributes | |
| AttributeProxy | lhs |
| AttributeProxy | op |
| AttributeProxy | rhs |
Private Types | |
| typedef Node | super |
Definition at line 267 of file ast.h.
|
|
|
|
|
Definition at line 270 of file ast.h. 00270 : 00271 super("Assignment"), 00272 lhs(this->addAttribute("lhs")), 00273 op (this->addAttribute("op")), 00274 rhs(this->addAttribute("rhs")) 00275 { 00276 } virtual void to3ACFile(FILE* f){}
|
|
|
convert me to 3ac - subclassed
Implements AST::Node. Definition at line 277 of file ast.h.
|
|
|
Definition at line 278 of file ast.h. Referenced by main(). |
|
|
Definition at line 279 of file ast.h. Referenced by main(). |
|
|
Definition at line 280 of file ast.h. Referenced by main(). |
1.4.2-20050421