All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ericaro.diezel.core.parser.RegExpConstants Maven / Gradle / Ivy

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\"",
    "",
    "",
    "\"*\"",
    "\"+\"",
    "\"?\"",
    "\"&\"",
    "\"|\"",
    "\",\"",
    "\"(\"",
    "\")\"",
    "",
    "",
    "",
  };

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy