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

编译器/解释器

开发平台:

Others

  1. #ifndef INC_ASTNULLType_hpp__
  2. #define INC_ASTNULLType_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. /** There is only one instance of this class **/
  38. class ASTNULLType : public AST {
  39. public:
  40. void addChild(RefAST c) {;}
  41. bool equals(RefAST t) const {return false;}
  42. bool equalsList(RefAST t) const {return false;}
  43. bool equalsListPartial(RefAST t) const {return false;}
  44. bool equalsTree(RefAST t) const {return false;}
  45. bool equalsTreePartial(RefAST t) const {return false;}
  46. ANTLR_USE_NAMESPACE(std)vector<RefAST> findAll(RefAST tree)
  47. {return ANTLR_USE_NAMESPACE(std)vector<RefAST>();}
  48. ANTLR_USE_NAMESPACE(std)vector<RefAST> findAllPartial(RefAST subtree)
  49. {return ANTLR_USE_NAMESPACE(std)vector<RefAST>();}
  50. RefAST getFirstChild() const { return this; }
  51. RefAST getNextSibling() const { return this; }
  52. ANTLR_USE_NAMESPACE(std)string getText() const { return "<ASTNULL>"; }
  53. int getType() const { return Token::NULL_TREE_LOOKAHEAD; }
  54. void initialize(int t, const ANTLR_USE_NAMESPACE(std)string& txt) {}
  55. void initialize(RefAST t) {}
  56. void initialize(RefToken t) {}
  57. void setFirstChild(RefAST c) {;}
  58. void setNextSibling(RefAST n) {;}
  59. void setText(const ANTLR_USE_NAMESPACE(std)string& text) {;}
  60. void setType(int ttype) {;}
  61. ANTLR_USE_NAMESPACE(std)string toString() const {return getText();}
  62. ANTLR_USE_NAMESPACE(std)string toStringList() const {return getText();}
  63. ANTLR_USE_NAMESPACE(std)string toStringTree() const {return getText();}
  64. };
  65. ANTLR_END_NAMESPACE
  66. #endif //INC_ASTNULLType_hpp__