/* Copyright Andrew Tolmach 2004.  All rights reserved. */

/** Specialized version of Symbol that has the constructors our
    JLex spec expects, and defines the symbol kind values.
    It uses the line number to supply both 
    left and right "character positions" of each token. 
*/
class Symbol extends java_cup.runtime.Symbol implements SymKinds {
    Symbol(int sym, int line) {
	super(sym,line,line);
    }

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