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

编译器/解释器

开发平台:

Others

  1. #ifndef INC_BaseAST_hpp__
  2. #define INC_BaseAST_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/AST.hpp"
  36. ANTLR_BEGIN_NAMESPACE(antlr)
  37. class BaseAST;
  38. typedef ASTRefCount<BaseAST> RefBaseAST;
  39. class BaseAST : public AST {
  40. protected:
  41. RefBaseAST down;
  42. RefBaseAST right;
  43. //private:
  44. // static bool verboseStringConversion;
  45. // static ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string> tokenNames;
  46. public:
  47. void addChild(RefAST c);
  48. private:
  49. void doWorkForFindAll(ANTLR_USE_NAMESPACE(std)vector<RefAST>& v,
  50. RefAST target,bool partialMatch);
  51. public:
  52. bool equals(RefAST t) const;
  53. bool equalsList(RefAST t) const;
  54. bool equalsListPartial(RefAST t) const;
  55. bool equalsTree(RefAST t) const;
  56. bool equalsTreePartial(RefAST t) const;
  57. ANTLR_USE_NAMESPACE(std)vector<RefAST> findAll(RefAST t);
  58. ANTLR_USE_NAMESPACE(std)vector<RefAST> findAllPartial(RefAST t);
  59. /** Get the first child of this node; null if no children */
  60. RefAST getFirstChild() const;
  61. /** Get  the next sibling in line after this one */
  62. RefAST getNextSibling() const;
  63. /** Get the token text for this node */
  64. ANTLR_USE_NAMESPACE(std)string getText() const;
  65. /** Get the token type for this node */
  66. int getType() const;
  67. /** Remove all children */
  68. void removeChildren();
  69. /** Set the first child of a node. */
  70. void setFirstChild(RefAST c);
  71. /** Set the next sibling after this one. */
  72. void setNextSibling(RefAST n);
  73. /** Set the token text for this node */
  74. void setText(const ANTLR_USE_NAMESPACE(std)string& txt);
  75. /** Set the token type for this node */
  76. void setType(int type);
  77. // static void setVerboseStringConversion(bool verbose,
  78. // const ANTLR_USE_NAMESPACE(std)vector<ANTLR_USE_NAMESPACE(std)string>& names);
  79. ANTLR_USE_NAMESPACE(std)string toString() const;
  80. ANTLR_USE_NAMESPACE(std)string toStringList() const;
  81. ANTLR_USE_NAMESPACE(std)string toStringTree() const;
  82. };
  83. ANTLR_END_NAMESPACE
  84. #endif //INC_BaseAST_hpp__