lin
2025-08-21 57113df3a0e2be01232281fad9a5f2c060567981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
package java_cup.runtime;
 
/** This subclass of symbol represents (at least) terminal symbols returned 
 *  by the scanner and placed on the parse stack.  At present, this 
 *  class does nothing more than its super class.
 *  
 * @see java_cup.runtime.int_token
 * @see java_cup.runtime.str_token
 * @version last updated: 11/25/95
 * @author  Scott Hudson
 */
public class token extends symbol {
 
  /* Simple constructor -- just delegates to the super class. */
  public token(int term_num)
    {
      /* super class does all the work */
      super(term_num);
    }
};