This commit is contained in:
Robert 2023-04-28 20:18:35 +02:00
parent 2cf7b979d9
commit 4b1ae5a52f

View file

@ -152,6 +152,7 @@ where
self.scanner.next();
Some(Token::CaptureGroupStart(
// Ist das Some(char) oder kann das weg?
match self.scanner.next_if(|&c| c == '?') {
None => CaptureGroupType::Normal,
Some(_) => self.get_capture_group_type()?