javacc-7.0.1.examples.JJTreeExamples.cpp.eg4.ASTAdd.cc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacc Show documentation
Show all versions of javacc Show documentation
JavaCC is a parser/scanner generator for Java.
/* Generated By:JJTree: Do not edit this line. ASTAdd.cc Version 7.0 */
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
#include "ASTAdd.h"
#include "ParserVisitor.h"
namespace EG4 {
ASTAdd::ASTAdd(int id) : SimpleNode(id) {
}
ASTAdd::ASTAdd(Parser *parser, int id) : SimpleNode(parser, id) {
}
ASTAdd::~ASTAdd() {
}
/** Accept the visitor. **/
void* ASTAdd::jjtAccept(ParserVisitor *visitor, void* data) const {
return
visitor->visit(this, data);
}
}