Fix another token conflict detection bug

This commit is contained in:
Max Brunsfeld 2019-01-17 12:44:35 -08:00
parent 9f7079c9c5
commit bb5dedfb1e

View file

@ -286,6 +286,9 @@ fn compute_conflict_status(
if transition.characters.does_intersect(&following_chars[i]) {
result.1.does_match_valid_continuation = true;
}
if transition.is_separator || has_sep {
result.1.does_match_separators = true;
}
}
}
}