1 #ifndef INC_ASTPair_hpp__
2 #define INC_ASTPair_hpp__
4 /* ANTLR Translator Generator
5 * Project led by Terence Parr at http://www.jGuru.com
6 * Software rights: http://www.antlr.org/license.html
8 * $Id: //depot/code/org.antlr/release/antlr-2.7.7/lib/cpp/antlr/ASTPair.hpp#2 $
11 #include <antlr/config.hpp>
12 #include <antlr/AST.hpp>
14 #ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
18 /** ASTPair: utility class used for manipulating a pair of ASTs
19 * representing the current AST root and current AST sibling.
20 * This exists to compensate for the lack of pointers or 'var'
23 * OK, so we can do those things in C++, but it seems easier
24 * to stick with the Java way for now.
26 class ANTLR_API ASTPair {
28 RefAST root; // current root of tree
29 RefAST child; // current child to which siblings are added
31 /** Make sure that child is the last sibling */
32 void advanceChildToEnd() {
34 while (child->getNextSibling()) {
35 child = child->getNextSibling();
39 // /** Copy an ASTPair. Don't call it clone() because we want type-safety */
41 // ASTPair tmp = new ASTPair();
46 ANTLR_USE_NAMESPACE(std)string toString() const {
47 ANTLR_USE_NAMESPACE(std)string r = !root ? ANTLR_USE_NAMESPACE(std)string("null") : root->getText();
48 ANTLR_USE_NAMESPACE(std)string c = !child ? ANTLR_USE_NAMESPACE(std)string("null") : child->getText();
49 return "["+r+","+c+"]";
53 #ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
57 #endif //INC_ASTPair_hpp__