We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b47e7 commit 7656084Copy full SHA for 7656084
src/parser/match_rule.rs
@@ -212,7 +212,7 @@ impl<'a> PatternParser<'a> {
212
Some('[') => self.set(),
213
Some('(') => self.group(),
214
// FIXME: handle escaped special chars
215
- Some(c @ ('?' | '*' | '+' | '|')) => {
+ Some(c @ ('?' | '*' | '+' | '|')) => {
216
Err(ParseError::MissingPatternBeforeQuantifier(*c))
217
}
218
Some(_) => self.characters(),
0 commit comments