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

编译器/解释器

开发平台:

Others

  1. #ifndef INC_ASTPair_hpp__
  2. #define INC_ASTPair_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. /** ASTPair:  utility class used for manipulating a pair of ASTs
  38.   * representing the current AST root and current AST sibling.
  39.   * This exists to compensate for the lack of pointers or 'var'
  40.   * arguments in Java.
  41.   *
  42.   * OK, so we can do those things in C++, but it seems easier
  43.   * to stick with the Java way for now.
  44.   */
  45. class ASTPair {
  46. public:
  47. RefAST root; // current root of tree
  48. RefAST child; // current child to which siblings are added
  49. /** Make sure that child is the last sibling */
  50. void advanceChildToEnd() {
  51. if (child) {
  52. while (child->getNextSibling()) {
  53. child = child->getNextSibling();
  54. }
  55. }
  56. }
  57. // /** Copy an ASTPair.  Don't call it clone() because we want type-safety */
  58. // ASTPair copy() {
  59. // ASTPair tmp = new ASTPair();
  60. // tmp.root = root;
  61. // tmp.child = child;
  62. // return tmp;
  63. // }
  64. ANTLR_USE_NAMESPACE(std)string toString() const {
  65. ANTLR_USE_NAMESPACE(std)string r = !root ? ANTLR_USE_NAMESPACE(std)string("null") : root->getText();
  66. ANTLR_USE_NAMESPACE(std)string c = !child ? ANTLR_USE_NAMESPACE(std)string("null") : child->getText();
  67. return "["+r+","+c+"]";
  68. }
  69. };
  70. ANTLR_END_NAMESPACE
  71. #endif //INC_ASTPair_hpp__