res->sym = sym;
res->location = loc;
- res->mid_rule = NULL;
+ res->midrule = NULL;
+ res->midrule_parent_rule = NULL;
+ res->midrule_parent_rhs_index = 0;
res->action = NULL;
res->used = false;
| Return its length. |
`--------------------*/
-unsigned int
-symbol_list_length (const symbol_list *l)
+int
+symbol_list_length (symbol_list const *l)
{
int res = 0;
- for (/* Nothing. */; l; l = l->next)
+ for (/* Nothing. */; l && l->sym; l = l->next)
++res;
return res;
}