OpenMD 3.0
Molecular Dynamics in the Open
Loading...
Searching...
No Matches
antlr::AST Class Referenceabstract
+ Inheritance diagram for antlr::AST:

Public Member Functions

 AST (const AST &)
 
virtual const char * typeName (void) const =0
 Return the type name for this AST node. (for XML output)
 
virtual RefAST clone (void) const =0
 Clone this AST node.
 
virtual bool equals (RefAST t) const =0
 Is node t equal to this in terms of token type and text?
 
virtual bool equalsList (RefAST t) const =0
 Is t an exact structural and equals() match of this tree.
 
virtual bool equalsListPartial (RefAST t) const =0
 Is 't' a subtree of this list? The siblings of the root are NOT ignored.
 
virtual bool equalsTree (RefAST t) const =0
 Is tree rooted at 'this' equal to 't'? The siblings of 'this' are ignored.
 
virtual bool equalsTreePartial (RefAST t) const =0
 Is 't' a subtree of the tree rooted at 'this'? The siblings of 'this' are ignored.
 
virtual std ::vector< RefASTfindAll (RefAST t)=0
 Walk the tree looking for all exact subtree matches.
 
virtual std ::vector< RefASTfindAllPartial (RefAST t)=0
 Walk the tree looking for all subtrees.
 
virtual void addChild (RefAST c)=0
 Add a node to the end of the child list for this node.
 
virtual size_t getNumberOfChildren () const =0
 Get the number of children. Returns 0 if the node is a leaf.
 
virtual RefAST getFirstChild () const =0
 Get the first child of this node; null if no children.
 
virtual RefAST getNextSibling () const =0
 Get the next sibling in line after this one.
 
virtual std::string getText () const =0
 Get the token text for this node.
 
virtual int getType () const =0
 Get the token type for this node.
 
virtual void initialize (int t, const std ::string &txt)=0
 Various initialization routines.
 
virtual void initialize (RefAST t)=0
 
virtual void initialize (RefToken t)=0
 
virtual void setFirstChild (RefAST c)=0
 Set the first child of a node.
 
virtual void setNextSibling (RefAST n)=0
 Set the next sibling after this one.
 
virtual void setText (const std ::string &txt)=0
 Set the token text for this node.
 
virtual void setType (int type)=0
 Set the token type for this node.
 
virtual std::string toString () const =0
 Return this AST node as a string.
 
virtual std::string toStringList () const =0
 Print out a child-sibling tree in LISP notation.
 
virtual std::string toStringTree () const =0
 

Friends

struct ASTRef
 

Detailed Description

Definition at line 23 of file AST.hpp.

Constructor & Destructor Documentation

◆ AST() [1/2]

antlr::AST::AST ( )
inline

Definition at line 25 of file AST.hpp.

◆ AST() [2/2]

antlr::AST::AST ( const AST & )
inline

Definition at line 26 of file AST.hpp.

◆ ~AST()

virtual antlr::AST::~AST ( )
inlinevirtual

Definition at line 27 of file AST.hpp.

Member Function Documentation

◆ addChild()

virtual void antlr::AST::addChild ( RefAST c)
pure virtual

Add a node to the end of the child list for this node.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

Referenced by antlr::ASTFactory::makeASTRoot().

◆ clone()

virtual RefAST antlr::AST::clone ( void ) const
pure virtual

◆ equals()

virtual bool antlr::AST::equals ( RefAST t) const
pure virtual

Is node t equal to this in terms of token type and text?

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ equalsList()

virtual bool antlr::AST::equalsList ( RefAST t) const
pure virtual

Is t an exact structural and equals() match of this tree.

The 'this' reference is considered the start of a sibling list.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ equalsListPartial()

virtual bool antlr::AST::equalsListPartial ( RefAST t) const
pure virtual

Is 't' a subtree of this list? The siblings of the root are NOT ignored.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ equalsTree()

virtual bool antlr::AST::equalsTree ( RefAST t) const
pure virtual

Is tree rooted at 'this' equal to 't'? The siblings of 'this' are ignored.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ equalsTreePartial()

virtual bool antlr::AST::equalsTreePartial ( RefAST t) const
pure virtual

Is 't' a subtree of the tree rooted at 'this'? The siblings of 'this' are ignored.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ findAll()

virtual std ::vector< RefAST > antlr::AST::findAll ( RefAST t)
pure virtual

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.

Implemented in antlr::BaseAST, and antlr::ASTNULLType.

◆ findAllPartial()

virtual std ::vector< RefAST > antlr::AST::findAllPartial ( RefAST t)
pure virtual

Walk the tree looking for all subtrees.

Return a vector of RefAST that lets the caller walk the list of subtree roots found herein.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ getFirstChild()

virtual RefAST antlr::AST::getFirstChild ( ) const
pure virtual

◆ getNextSibling()

virtual RefAST antlr::AST::getNextSibling ( ) const
pure virtual

◆ getNumberOfChildren()

virtual size_t antlr::AST::getNumberOfChildren ( ) const
pure virtual

Get the number of children. Returns 0 if the node is a leaf.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ getText()

virtual std::string antlr::AST::getText ( ) const
pure virtual

Get the token text for this node.

Implemented in antlr::ASTNULLType, antlr::BaseAST, and antlr::CommonAST.

Referenced by antlr::BaseAST::equals().

◆ getType()

virtual int antlr::AST::getType ( ) const
pure virtual

Get the token type for this node.

Implemented in antlr::ASTNULLType, antlr::BaseAST, and antlr::CommonAST.

Referenced by antlr::BaseAST::equals(), and antlr::TreeParser::match().

◆ initialize()

virtual void antlr::AST::initialize ( int t,
const std ::string & txt )
pure virtual

Various initialization routines.

Used by several factories to initialize an AST element.

Implemented in antlr::ASTNULLType, antlr::CommonAST, and antlr::CommonASTWithHiddenTokens.

Referenced by antlr::ASTFactory::create(), antlr::ASTFactory::create(), antlr::ASTFactory::create(), and antlr::ASTFactory::create().

◆ setFirstChild()

virtual void antlr::AST::setFirstChild ( RefAST c)
pure virtual

Set the first child of a node.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

Referenced by antlr::ASTFactory::addASTChild(), and antlr::ASTFactory::make().

◆ setNextSibling()

virtual void antlr::AST::setNextSibling ( RefAST n)
pure virtual

Set the next sibling after this one.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ setText()

virtual void antlr::AST::setText ( const std ::string & txt)
pure virtual

Set the token text for this node.

Implemented in antlr::BaseAST, antlr::ASTNULLType, and antlr::CommonAST.

◆ setType()

virtual void antlr::AST::setType ( int type)
pure virtual

Set the token type for this node.

Implemented in antlr::ASTNULLType, antlr::CommonAST, and antlr::BaseAST.

Referenced by antlr::ASTFactory::create().

◆ toString()

virtual std::string antlr::AST::toString ( ) const
pure virtual

Return this AST node as a string.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ toStringList()

virtual std::string antlr::AST::toStringList ( ) const
pure virtual

Print out a child-sibling tree in LISP notation.

Implemented in antlr::ASTNULLType, and antlr::BaseAST.

◆ typeName()

virtual const char * antlr::AST::typeName ( void ) const
pure virtual

Return the type name for this AST node. (for XML output)

Implemented in antlr::ASTNULLType, antlr::CommonAST, antlr::CommonASTWithHiddenTokens, and antlr::BaseAST.

Friends And Related Symbol Documentation

◆ ASTRef

friend struct ASTRef
friend

Definition at line 134 of file AST.hpp.


The documentation for this class was generated from the following file: