org.jastadd.jrag.AST.ASTForUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jastadd Show documentation
Show all versions of jastadd Show documentation
A metacompilation framework for Java using attribute grammars.
/* Generated By:JJTree: Do not edit this line. ASTForUpdate.java */
package org.jastadd.jrag.AST;
public class ASTForUpdate extends SimpleNode {
public ASTForUpdate(int id) {
super(id);
}
public ASTForUpdate(JragParser p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(JragParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
}