org.jastadd.jrag.AST.ASTModifiers 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. ASTModifiers.java */
package org.jastadd.jrag.AST;
public class ASTModifiers extends SimpleNode {
public ASTModifiers(int id) {
super(id);
}
public ASTModifiers(JragParser p, int id) {
super(p, id);
}
/** Accept the visitor. **/
public Object jjtAccept(JragParserVisitor visitor, Object data) {
return visitor.visit(this, data);
}
}