Lines Matching refs:symbols
35 These sections declare all the terminal and non terminal symbols
48 symbols maintains the name to object mapping for all symbols
99 MAX_RHS + " symbols and actions");
119 /** table of declared symbols -- contains production parts indexed by name */
120 protected Hashtable symbols = new Hashtable();
188 symbols.put("error", new symbol_part(terminal.error));
203 /* error recovery assuming something went wrong before symbols
491 production_part symb = (production_part)symbols.get(symid.str_val);
553 if (symbols.get(term_id.str_val) != null)
562 symbols.put(term_id.str_val,
574 if (symbols.get(non_term_id.str_val) != null)
589 /* build a production_part and put it in the symbols table */
590 symbols.put(non_term_id.str_val, new symbol_part(this_nt));