/**
 * This file automatically has been generated by ULS and
 *  contains an implementation of lexical analyzer
 *  for parsing the programming language 'sample2'.
 *
 * 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 Sample2 : uls.polaris.UlsLex {
	public const int             NONE = -7;
	public const int             LINK = -6;
	public const int             TMPL = -5;
	public const int          LINENUM = -4;
	public const int           NUMBER = -3;
	public const int              EOF = -1;

	public const int              EOI = 0;
	public const int              TAB = 9;

	public const int               LF = 10;

	public const int            BEGIN = 92;
	public const int              BEG = 92;
	public const int              AND = 93;
	public const int           ANDAND = 93;
	public const int           AANNDD = 93;
	public const int             AND2 = 93;
	public const int        AND_ALIAS = 93;
	public const int            MINUS = 94;
	public const int               OR = 94;
	public const int              OR2 = 94;
	public const int               EQ = 95;
	public const int             EQEQ = 96;
	public const int              NEQ = 97;
	public const int              LEQ = 98;
	public const int              GEQ = 99;

	public const int               IF = 150;
	public const int            ENDIF = 151;
	public const int      BITWISE_AND = 152;
	public const int              ERR = 199;

	public const int           SQUOTE = 200;
	public const int           DQUOTE = 201;

	public const int            IDENT = 210;

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