Compute in-progress symbols for out-of-context states
This commit is contained in:
parent
240355b04c
commit
9657dfcfc3
1 changed files with 1 additions and 1 deletions
|
|
@ -143,7 +143,7 @@ class ParseTableBuilder {
|
|||
ParseStateId state_id = parse_table.add_state();
|
||||
for (const auto &entry : item_set.entries) {
|
||||
const ParseItem &item = entry.first;
|
||||
if (item.step_index > 0 && item.lhs() != rules::START() && !allow_any_conflict)
|
||||
if (item.step_index > 0 && item.lhs() != rules::START())
|
||||
parse_table.states[state_id].in_progress_symbols.insert(item.lhs());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue