Skip to content

Commit

Permalink
Fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeaster30 committed Apr 16, 2023
1 parent 3bb22a5 commit f723438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libvore/parser_regexp.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func parse_regexp_pattern(regexp_token *Token, regexp string, index int) (AstExp
if comma_or_brace == ',' {
if regexp[idx+1] == '}' {
exp = &AstLoop{from, -1, false, &AstPrimary{start}, ""}
end_idx = idx + 1
end_idx = idx + 2
} else {
to, idx2, err := parse_regexp_number(regexp_token, regexp, idx+1)
if err != nil {
Expand Down

0 comments on commit f723438

Please sign in to comment.