using javacc to compile
[cdsspec-compiler.git] / src / edu / uci / eecs / specCompiler / grammerParser / SpecParserConstants.java
1 /* Generated By:JavaCC: Do not edit this line. SpecParserConstants.java */
2 package edu.uci.eecs.specCompiler.grammerParser;
3
4
5 /**
6  * Token literal values and constants.
7  * Generated by org.javacc.parser.OtherFilesGen#start()
8  */
9 public interface SpecParserConstants {
10
11   /** End of File. */
12   int EOF = 0;
13   /** RegularExpression Id. */
14   int SPACE = 5;
15   /** RegularExpression Id. */
16   int HEAD = 6;
17   /** RegularExpression Id. */
18   int TAIL = 7;
19   /** RegularExpression Id. */
20   int BEGIN = 8;
21   /** RegularExpression Id. */
22   int END = 9;
23   /** RegularExpression Id. */
24   int COMMENT = 10;
25
26   /** Lexical state. */
27   int DEFAULT = 0;
28
29   /** Literal token values. */
30   String[] tokenImage = {
31     "<EOF>",
32     "\" \"",
33     "\"\\n\"",
34     "\"\\r\"",
35     "\"\\r\\n\"",
36     "<SPACE>",
37     "\"/**\"",
38     "\"*/\"",
39     "\"@Begin\"",
40     "\"@End\"",
41     "<COMMENT>",
42   };
43
44 }