OpenMD
2.6
Molecular Dynamics in the Open
|
#include <ASTNULLType.hpp>
Public Member Functions | |
const char * | typeName (void) const |
Return the type name for this AST node. (for XML output) More... | |
RefAST | clone (void) const |
Clone this AST node. More... | |
void | addChild (RefAST c) |
Add a node to the end of the child list for this node. More... | |
size_t | getNumberOfChildren () const |
Get the number of children. Returns 0 if the node is a leaf. More... | |
void | setFirstChild (RefAST c) |
Set the first child of a node. More... | |
void | setNextSibling (RefAST n) |
Set the next sibling after this one. More... | |
bool | equals (RefAST t) const |
Is node t equal to this in terms of token type and text? More... | |
bool | equalsList (RefAST t) const |
bool | equalsListPartial (RefAST t) const |
bool | equalsTree (RefAST t) const |
bool | equalsTreePartial (RefAST t) const |
std ::vector< RefAST > | findAll (RefAST tree) |
std ::vector< RefAST > | findAllPartial (RefAST subtree) |
RefAST | getFirstChild () const |
Get the first child of this node; null if no children. More... | |
RefAST | getNextSibling () const |
Get the next sibling in line after this one. More... | |
std ::string | getText () const |
Get the token text for this node. More... | |
int | getType () const |
Get the token type for this node. More... | |
void | initialize (int t, const std ::string &txt) |
void | initialize (RefAST t) |
void | initialize (RefToken t) |
void | initialize (std ::istream &infile) |
void | setText (const std ::string &text) |
Set the token text for this node. More... | |
void | setType (int ttype) |
Set the token type for this node. More... | |
std ::string | toString () const |
Return this AST node as a string. More... | |
std ::string | toStringList () const |
Print out a child-sibling tree in LISP notation. More... | |
std ::string | toStringTree () const |
bool | attributesToStream (std ::ostream &out) const |
void | toStream (std ::ostream &out) const |
![]() | |
AST () | |
AST (const AST &) | |
virtual | ~AST () |
There is only one instance of this class
Definition at line 20 of file ASTNULLType.hpp.
|
virtual |
Add a node to the end of the child list for this node.
Implements antlr::AST.
Definition at line 25 of file ASTNULLType.cpp.
bool antlr::ASTNULLType::attributesToStream | ( | std ::ostream & | out | ) | const |
|
virtual |
|
virtual |
Is node t equal to this in terms of token type and text?
Implements antlr::AST.
Definition at line 34 of file ASTNULLType.cpp.
|
virtual |
Is t an exact structural and equals() match of this tree. The 'this' reference is considered the start of a sibling list.
Implements antlr::AST.
Definition at line 39 of file ASTNULLType.cpp.
|
virtual |
Is 't' a subtree of this list? The siblings of the root are NOT ignored.
Implements antlr::AST.
Definition at line 44 of file ASTNULLType.cpp.
|
virtual |
Is tree rooted at 'this' equal to 't'? The siblings of 'this' are ignored.
Implements antlr::AST.
Definition at line 49 of file ASTNULLType.cpp.
|
virtual |
Is 't' a subtree of the tree rooted at 'this'? The siblings of 'this' are ignored.
Implements antlr::AST.
Definition at line 54 of file ASTNULLType.cpp.
Walk the tree looking for all exact subtree matches. Return a vector of RefAST that lets the caller walk the list of subtree roots found herein.
Implements antlr::AST.
Definition at line 59 of file ASTNULLType.cpp.
Walk the tree looking for all subtrees. Return a vector of RefAST that lets the caller walk the list of subtree roots found herein.
Implements antlr::AST.
Definition at line 64 of file ASTNULLType.cpp.
|
virtual |
Get the first child of this node; null if no children.
Implements antlr::AST.
Definition at line 69 of file ASTNULLType.cpp.
|
virtual |
Get the next sibling in line after this one.
Implements antlr::AST.
Definition at line 74 of file ASTNULLType.cpp.
|
virtual |
Get the number of children. Returns 0 if the node is a leaf.
Implements antlr::AST.
Definition at line 29 of file ASTNULLType.cpp.
|
virtual |
Get the token text for this node.
Implements antlr::AST.
Definition at line 79 of file ASTNULLType.cpp.
Referenced by toString(), toStringList(), and toStringTree().
|
virtual |
Get the token type for this node.
Implements antlr::AST.
Definition at line 84 of file ASTNULLType.cpp.
References antlr::Token::NULL_TREE_LOOKAHEAD.
|
virtual |
Various initialization routines. Used by several factories to initialize an AST element.
Implements antlr::AST.
|
virtual |
Implements antlr::AST.
Definition at line 93 of file ASTNULLType.cpp.
|
virtual |
Implements antlr::AST.
Definition at line 97 of file ASTNULLType.cpp.
void antlr::ASTNULLType::initialize | ( | std ::istream & | infile | ) |
|
virtual |
Set the first child of a node.
Implements antlr::AST.
Definition at line 107 of file ASTNULLType.cpp.
|
virtual |
Set the next sibling after this one.
Implements antlr::AST.
Definition at line 111 of file ASTNULLType.cpp.
|
virtual |
Set the token text for this node.
Implements antlr::AST.
Definition at line 115 of file ASTNULLType.cpp.
|
virtual |
Set the token type for this node.
Implements antlr::AST.
Definition at line 119 of file ASTNULLType.cpp.
void antlr::ASTNULLType::toStream | ( | std ::ostream & | out | ) | const |
|
virtual |
Return this AST node as a string.
Implements antlr::AST.
Definition at line 123 of file ASTNULLType.cpp.
References getText().
|
virtual |
Print out a child-sibling tree in LISP notation.
Implements antlr::AST.
Definition at line 128 of file ASTNULLType.cpp.
References getText().
|
virtual |
|
virtual |
Return the type name for this AST node. (for XML output)
Implements antlr::AST.
Definition at line 150 of file ASTNULLType.cpp.