Skip to content

Commit

Permalink
Simplify tests to accomodate scale.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimY4 committed Jan 12, 2025
1 parent 5bdf787 commit 61aa4b9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 955 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,8 @@ private Coregex group(Context ctx) {
int flags = ctx.flags;
ctx.flags = negate ? flags & ~flags(ctx) : flags | flags(ctx);
if (')' == ctx.peek()) {
ctx.match(')');
return Coregex.empty();
group = Coregex.empty();
break;
}
group = new Coregex.Group(RE(ctx));
ctx.flags = flags;
Expand Down
Loading

0 comments on commit 61aa4b9

Please sign in to comment.