/**
 * This file automatically has been generated by ULS and
 *  contains an implementation of lexical analyzer
 *  for parsing the programming language 'sample1'.
 *
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */
public class Sample1 extends uls.polaris.UlsLex {
	public final int              ERR = -8;
	public final int             NONE = -7;
	public final int             LINK = -6;
	public final int             TMPL = -5;
	public final int              LNO = -4;
	public final int              NUM = -3;
	public final int               ID = -2;
	public final int        EndOfFile = -1;

	public final int              EOI = 0;

	public final int              AND = 128;
	public final int               OR = 129;

	public final int               EQ = 130;
	public final int              LEQ = 131;
	public final int              GEQ = 132;
	public final int              NEQ = 133;
	public final int              INC = 134;
	public final int              DEC = 135;

	public final int              ASM = 150;
	public final int          DEFAULT = 151;
	public final int             AUTO = 152;
	public final int               DO = 153;
	public final int           DOUBLE = 154;

	public final int             ELSE = 160;
	public final int             ENUM = 161;
	public final int             GOTO = 165;
	public final int               IF = 166;
	public final int            BREAK = 167;
	public final int             CASE = 168;
	public final int           SWITCH = 169;

	public final int          TYPEDEF = 170;
	public final int            UNION = 171;
	public final int             CHAR = 172;
	public final int           EXTERN = 173;
	public final int            FLOAT = 174;
	public final int              FOR = 175;
	public final int         CONTINUE = 176;
	public final int        TOK_CONST = 177;
	public final int              INT = 178;
	public final int             LONG = 179;

	public final int         REGISTER = 180;
	public final int           RETURN = 185;
	public final int            SHORT = 186;
	public final int           SIGNED = 187;
	public final int           SIZEOF = 188;
	public final int           STATIC = 189;

	public final int           STRUCT = 190;
	public final int         UNSIGNED = 191;
	public final int         TOK_VOID = 192;
	public final int         VOLATILE = 193;
	public final int            WHILE = 194;

	public Sample1(String ulc_file) {
		super(ulc_file);
	}

	protected void finalize() {
		super.finalize();
	}
}
