We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
RepetitionCountDecimalEmpty
ast::Error::description
1 parent 9d1211e commit 31d78a6Copy full SHA for 31d78a6
regex-syntax/src/ast/mod.rs
@@ -202,13 +202,15 @@ impl error::Error for Error {
202
GroupUnclosed => "unclosed group",
203
GroupUnopened => "unopened group",
204
NestLimitExceeded(_) => "nest limit exceeded",
205
+ RepetitionCountDecimalEmpty => {
206
+ "invalid decimal in repetition quantifier"
207
+ }
208
RepetitionCountInvalid => "invalid repetition count range",
209
RepetitionCountUnclosed => "unclosed counted repetition",
210
RepetitionMissing => "repetition operator missing expression",
211
UnicodeClassInvalid => "invalid Unicode character class",
212
UnsupportedBackreference => "backreferences are not supported",
213
UnsupportedLookAround => "look-around is not supported",
- _ => unreachable!(),
214
}
215
216
0 commit comments