Closed
Description
I was writing a PR for #1102, and I found a bug where a dangling No
slips through in create sequence options
If a No
is consumed, the case where nothing exists isn't handled.
This should be
if self.parse_keywords(&[Keyword::NO, Keyword::CYCLE]) {
sequence_options.push(SequenceOptions::Cycle(true));
} else if self.parse_keywords(&[Keyword::CYCLE]) {
sequence_options.push(SequenceOptions::Cycle(false));
}
I will open a PR.
Metadata
Metadata
Assignees
Labels
No labels