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

Fix capture group mutations #1333

Merged
merged 1 commit into from
May 2, 2022
Merged

Fix capture group mutations #1333

merged 1 commit into from
May 2, 2022

Commits on May 2, 2022

  1. Fix capture group mutations

    - Fix incomplete mutations for regexp capture groups. As an example, `/(\w\d)/` now gets mutated to `/(\W\d)/` and `/(\w\D)/` instead of just the former case.
    - Likewise, fix capture group -> passive group mutations which would not get properly generated in many cases. As an example, `/(\w\d)/` would get mutated to `/(?:\w)/` instead of `/(?:\w\d)/` like it will now.
    - Closely related to #1328
    dgollahon committed May 2, 2022
    Configuration menu
    Copy the full SHA
    45b7964 View commit details
    Browse the repository at this point in the history