Home | History | Annotate | Download | only in java_cup

Lines Matching refs:production

4 /** The "core" of an LR item.  This includes a production and the position
5 * of a marker (the "dot") within the production. Typically item cores
6 * are written using a production with an embedded "dot" to indicate their
11 * the given production, and has succeeded in matching everything before the
30 * @param prod production this item uses.
33 public lr_item_core(production prod, int pos) throws internal_error
40 "Attempt to create an lr_item_core with a null production");
65 * @param prod production this item uses.
67 public lr_item_core(production prod) throws internal_error
76 /** The production for the item. */
77 protected production _the_production;
79 /** The production for the item. */
80 public production the_production() {return _the_production;}
84 /** The position of the "dot" -- this indicates the part of the production
90 /** The position of the "dot" -- this indicates the part of the production
108 /** Is the dot at the end of the production? */