blob: 8eeb4b20f2b66c1c1b3cf189443bf3511de5fade [file] [log] [blame]
package org.eclipse.gymnast.examples.game.lang.gen.ast;
import org.eclipse.gymnast.runtime.core.ast.TokenInfo;
/**
*
* @generated by Gymnast from game.ast on Jun 7, 2006 1:11:57 AM
*/
public class Direction extends GameTokenNode {
public static final String KW_LEFT = "left";
public static final String KW_RIGHT = "right";
/**
* Construct a new Direction.
*/
public Direction(TokenInfo tokenInfo) {
super(tokenInfo);
}
/**
* This method overrides the superclass <code>acceptImpl</code> providing
* the same implementation. Here <code>this</code> refers to this specific node
* class, so the <code>beginVisit</code> and <code>endVisit</code> methods
* specific to this type in the visitor will be invoked.
*/
public void acceptImpl(GameASTNodeVisitor visitor) {
boolean visitChildren = visitor.beginVisit(this);
if (visitChildren) visitChildren(visitor);
visitor.endVisit(this);
}
}