#include <declaration.h>
Inheritance diagram for Declaration:
Public Member Functions | |
Declaration (SrcPosition *position) | |
virtual | ~Declaration () |
virtual Ast & | operator= (const Ast &ast) |
virtual bool | operator== (const Ast &ast) const |
|
Definition at line 10 of file declaration.h. References Ast::position.
00011 : Ast(position) {} |
|
Definition at line 13 of file declaration.h.
00013 { 00014 } |
|
Reimplemented from Ast. Reimplemented in SequentialDeclaration, and SimpleDeclaration. Definition at line 16 of file declaration.h. References Ast::operator=(). Referenced by SimpleDeclaration::operator=(), and SequentialDeclaration::operator=().
00016 { 00017 Ast::operator=(ast); 00018 return *(this); 00019 } |
|
Reimplemented from Ast. Reimplemented in SequentialDeclaration, and SimpleDeclaration. Definition at line 20 of file declaration.h. References Ast::operator==(). Referenced by SimpleDeclaration::operator==(), and SequentialDeclaration::operator==().
00020 { 00021 return Ast::operator==(ast); 00022 } |