net.ericaro.diezel.core.parser.RegExpConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of diezel-maven-plugin Show documentation
Show all versions of diezel-maven-plugin Show documentation
An Embedded Domain Specific Language Parser Generator PLugin compiler
The newest version!
/* Generated By:JavaCC: Do not edit this line. RegExpConstants.java */
package net.ericaro.diezel.core.parser;
/**
* Token literal values and constants.
* Generated by org.javacc.parser.OtherFilesGen#start()
*/
public interface RegExpConstants {
/** End of File. */
int EOF = 0;
/** RegularExpression Id. */
int STAR = 7;
/** RegularExpression Id. */
int PLUS = 8;
/** RegularExpression Id. */
int OPT = 9;
/** RegularExpression Id. */
int BANG = 10;
/** RegularExpression Id. */
int SEL = 11;
/** RegularExpression Id. */
int SEQ = 12;
/** RegularExpression Id. */
int LEFT = 13;
/** RegularExpression Id. */
int RIGHT = 14;
/** RegularExpression Id. */
int LETTER = 15;
/** RegularExpression Id. */
int DIGIT = 16;
/** RegularExpression Id. */
int IDENTIFIER = 17;
/** Lexical state. */
int DEFAULT = 0;
/** Literal token values. */
String[] tokenImage = {
"",
"\" \"",
"\"\\t\"",
"\"\\n\"",
"\"\\r\"",
"",
"",
"\"*\"",
"\"+\"",
"\"?\"",
"\"&\"",
"\"|\"",
"\",\"",
"\"(\"",
"\")\"",
"",
"",
"",
};
}