Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 639cb26c4aabceebc017b8d927d7e00034018083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// $ANTLR : "Game.g" -> "GameLexer.java"$

package org.eclipse.gymnast.examples.game.lang.gen.parser;

public interface GameParserTokenTypes {
	int EOF = 1;
	int NULL_TREE_LOOKAHEAD = 3;
	int INT_LITERAL = 4;
	int LITERAL_fire = 5;
	int SEMI = 6;
	int LITERAL_move = 7;
	int LITERAL_left = 8;
	int LITERAL_right = 9;
	int ID = 10;
	int DIGIT = 11;
	int WS = 12;
	int SINGLE_LINE_COMMENT = 13;
}

Back to the top