Home | History | Annotate | Download | only in java_cup

Lines Matching refs:terminal

17  *   <dd>   this contains constant declarations for each terminal (and
18 * optionally each non-terminal).
30 * <dd> lists the LHS non terminal number, and the length of the RHS of
39 * of under the LHS non terminal symbol for the production (as if we
41 * RHS). This table is indexed by non terminal numbers and indicates
92 unused_term - count of unused terminal symbols.
93 unused_non_term - count of unused non terminal symbols.
244 terminal term;
267 for (Enumeration e = terminal.all(); e.hasMoreElements(); )
269 term = (terminal)e.nextElement();
271 /* output a constant decl for the terminal */
286 /* output a constant decl for the terminal */
707 out.println(" public int EOF_sym() {return " + terminal.EOF.index() +
711 out.println(" public int error_sym() {return " + terminal.error.index() +