diff --git a/src/compiler/build_tables/property_table_builder.cc b/src/compiler/build_tables/property_table_builder.cc index ec9d79db..c4263b8e 100644 --- a/src/compiler/build_tables/property_table_builder.cc +++ b/src/compiler/build_tables/property_table_builder.cc @@ -348,7 +348,8 @@ struct PropertyTableBuilder { } } - result.states[state_id].default_next_state_id = add_state(default_next_item_set); + StateId default_next_state_id = add_state(default_next_item_set); + result.states[state_id].default_next_state_id = default_next_state_id; // Sort the matching property sets by ascending specificity and by // their order in the sheet. This way, more specific selectors and later