/**
 * 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.
 */
using System;

public class Sample1 : uls.polaris.UlsLex {
	public const int              ERR = -8;
	public const int             NONE = -7;
	public const int             LINK = -6;
	public const int             TMPL = -5;
	public const int              LNO = -4;
	public const int              NUM = -3;
	public const int               ID = -2;
	public const int        EndOfFile = -1;

	public const int              EOI = 0;

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

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

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

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

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

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

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

	public Sample1(String ulc_file)
		: base(ulc_file) {
	}
} // End of Sample1
