Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: optimize grouping #23

Merged
merged 6 commits into from
Dec 14, 2023
Merged

Conversation

mdjastrzebski
Copy link
Member

@mdjastrzebski mdjastrzebski commented Dec 12, 2023

Summary

Optimize grouping in order to reduce unnecessary wrapping in (?:...). Elements are categorized into 3 priorities:

  • atoms: single characters, \d, ranges ([...]), groups ((?:...))
  • sequences of atoms, e.g., abc
  • alternations: groups of sequences/atoms joined by OR (|) operator, e.g., ab|c|d

Introduces RegexNode type to track both pattern and priority of compilation nodes during the recursive compilation steps.

Test plan

Add relevant tests, adjust existing tests.

@codecov-commenter
Copy link

codecov-commenter commented Dec 12, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (576f566) 100.00% compared to head (d822a96) 100.00%.

Additional details and impacted files
@@            Coverage Diff            @@
##              main       #23   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            8        10    +2     
  Lines           68        97   +29     
  Branches        11        19    +8     
=========================================
+ Hits            68        97   +29     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@mdjastrzebski mdjastrzebski requested review from okwasniewski and jaworek and removed request for okwasniewski December 12, 2023 21:44
@mdjastrzebski mdjastrzebski merged commit a5fca65 into main Dec 14, 2023
@mdjastrzebski mdjastrzebski deleted the refactor/optimize-grouping branch December 14, 2023 21:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants