AST.hpp
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:3k
源码类别:

编译器/解释器

开发平台:

Others

  1. #ifndef INC_AST_hpp__
  2. #define INC_AST_hpp__
  3. /**
  4.  * <b>SOFTWARE RIGHTS</b>
  5.  * <p>
  6.  * ANTLR 2.6.0 MageLang Insitute, 1999
  7.  * <p>
  8.  * We reserve no legal rights to the ANTLR--it is fully in the
  9.  * public domain. An individual or company may do whatever
  10.  * they wish with source code distributed with ANTLR or the
  11.  * code generated by ANTLR, including the incorporation of
  12.  * ANTLR, or its output, into commerical software.
  13.  * <p>
  14.  * We encourage users to develop software with ANTLR. However,
  15.  * we do ask that credit is given to us for developing
  16.  * ANTLR. By "credit", we mean that if you use ANTLR or
  17.  * incorporate any source code into one of your programs
  18.  * (commercial product, research project, or otherwise) that
  19.  * you acknowledge this fact somewhere in the documentation,
  20.  * research report, etc... If you like ANTLR and have
  21.  * developed a nice tool with the output, please mention that
  22.  * you developed it using ANTLR. In addition, we ask that the
  23.  * headers remain intact in our source code. As long as these
  24.  * guidelines are kept, we expect to continue enhancing this
  25.  * system and expect to make other tools available as they are
  26.  * completed.
  27.  * <p>
  28.  * The ANTLR gang:
  29.  * @version ANTLR 2.6.0 MageLang Insitute, 1999
  30.  * @author Terence Parr, <a href=http://www.MageLang.com>MageLang Institute</a>
  31.  * @author <br>John Lilley, <a href=http://www.Empathy.com>Empathy Software</a>
  32.  * @author <br><a href="mailto:pete@yamuna.demon.co.uk">Pete Wells</a>
  33.  */
  34. #include "antlr/config.hpp"
  35. #include "antlr/ASTRefCount.hpp"
  36. #include "antlr/Token.hpp"
  37. #include <vector>
  38. #include <string>
  39. ANTLR_BEGIN_NAMESPACE(antlr)
  40. struct ASTRef;
  41. class AST {
  42. public:
  43. AST() {ref=0;}
  44. virtual ~AST() {}
  45. virtual void addChild(RefAST c)=0;
  46. virtual bool equals(RefAST t) const=0;
  47. virtual bool equalsList(RefAST t) const=0;
  48. virtual bool equalsListPartial(RefAST t) const=0;
  49. virtual bool equalsTree(RefAST t) const=0;
  50. virtual bool equalsTreePartial(RefAST t) const=0;
  51. virtual ANTLR_USE_NAMESPACE(std)vector<RefAST> findAll(RefAST t)=0;
  52. virtual ANTLR_USE_NAMESPACE(std)vector<RefAST> findAllPartial(RefAST t)=0;
  53. /** Get the first child of this node; null if no children */
  54. virtual RefAST getFirstChild() const=0;
  55. /** Get  the next sibling in line after this one */
  56. virtual RefAST getNextSibling() const=0;
  57. /** Get the token text for this node */
  58. virtual ANTLR_USE_NAMESPACE(std)string getText() const=0;
  59. /** Get the token type for this node */
  60. virtual int getType() const=0;
  61. virtual void initialize(int t,const ANTLR_USE_NAMESPACE(std)string& txt)=0;
  62. virtual void initialize(RefAST t)=0;
  63. virtual void initialize(RefToken t)=0;
  64. /** Set the first child of a node. */
  65. virtual void setFirstChild(RefAST c)=0;
  66. /** Set the next sibling after this one. */
  67. virtual void setNextSibling(RefAST n)=0;
  68. /** Set the token text for this node */
  69. virtual void setText(const ANTLR_USE_NAMESPACE(std)string& txt)=0;
  70. /** Set the token type for this node */
  71. virtual void setType(int type)=0;
  72. virtual ANTLR_USE_NAMESPACE(std)string toString() const=0;
  73. virtual ANTLR_USE_NAMESPACE(std)string toStringList() const=0;
  74. virtual ANTLR_USE_NAMESPACE(std)string toStringTree() const=0;
  75. private:
  76. friend struct ASTRef;
  77. ASTRef* ref;
  78. AST(RefAST other);
  79. AST& operator=(RefAST other);
  80. };
  81. extern RefAST nullAST;
  82. extern AST* const nullASTptr;
  83. #ifdef NEEDS_OPERATOR_LESS_THAN
  84. inline operator<(RefAST l,RefAST r); // {return true;}
  85. #endif
  86. ANTLR_END_NAMESPACE
  87. #endif //INC_AST_hpp__