themes/regexp: fix unwrap check on regexp match byte offsets

pull/234/head
Manos Pitsidianakis 4 years ago
parent 75f59ee726
commit b94342c52b
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -609,8 +609,17 @@ mod regexp {
}
let next_byte_offset = next_byte_offset.unwrap();
while next_byte_offset.start() < self.char_indices.next().unwrap().0 {
let mut next_char_index = self.char_indices.next();
if next_char_index.is_none() {
return None;
}
while next_byte_offset.start() < next_char_index.unwrap().0 {
self.char_offset += 1;
next_char_index = self.char_indices.next();
if next_char_index.is_none() {
return None;
}
}
let start = self.char_offset;

Loading…
Cancel
Save