]> git.saurik.com Git - bison.git/blobdiff - src/state.h
* LR0.c (new_itemsets): Fix wording in comments: say item index rather
[bison.git] / src / state.h
index 2d67bb7c31b6b0e6fa19d9fc7927d48a9c5107bd..390ab8af2f6f7849784165b7aeb94c717b47030b 100644 (file)
@@ -185,6 +185,7 @@ typedef struct
 {
   int num;
   bitset *lookahead_tokens;
+  /* Sorted ascendingly on rule number.  */
   rule *rules[1];
 } reductions;
 
@@ -210,8 +211,8 @@ struct state
      a human readable description of the resolution.  */
   const char *solved_conflicts;
 
-  /* Its items.  Must be last, since ITEMS can be arbitrarily large.
-     */
+  /* Its items.  Must be last, since ITEMS can be arbitrarily large.  Sorted
+     ascendingly on item index in RITEM, which is sorted on rule number.  */
   size_t nitems;
   item_number items[1];
 };