package code.loader.parser.txtParser;

/**
 *  Specialized version of Symbol that has the constructors our JLex expects,
 *  and defines the symbol kind values. It uses the line number to supply both
 *  the left and right "character positions" of each token.
 *
 *@author     jimeng
 *@since    June 17, 2003
 */
public class Token extends java_cup.runtime.Symbol implements TokKinds {
    Token(int sym, int line) {
        super(sym, line, line);
    }


    Token(int sym, int line, Object value) {
        super(sym, line, line, value);
    }
}
