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 small issues in the addition of hir::LookAround #2

Merged
merged 9 commits into from
Mar 11, 2025

Conversation

shilangyu
Copy link
Collaborator

@shilangyu shilangyu commented Mar 8, 2025

The rename commit makes the diff less visible. I split each change in a separate commit with an explanation of the change.

It is probably better to review the changes by looking at the diff from individual commits.

The lack of recursing into the inner expression of a lookaround is correct under the current assumption that lookarounds cannot have capture groups. But once the restriction is lifted, this wrong implementation can be very subtle to find. Instead, we can already do the filtering and accept it being a no-op for now.
This makes it consistent with parser's ErrorKind::UnsupportedLookAround.
@shilangyu shilangyu changed the title Fix small issues in addition of hir::LookAround Fix small issues in addition of hir::LookAround Mar 8, 2025
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Overview

This PR fixes naming inconsistencies and related issues with lookaround expressions in the regex HIR and associated components. Key changes include renaming “Lookaround” to “LookAround” in multiple modules, updating string literals for lookaround printing, and adding test coverage for lookaround printing.

Reviewed Changes

File Description
regex-syntax/src/hir/print.rs Update string literals for positive/negative lookbehind and fix naming.
regex-automata/src/meta/reverse_inner.rs Update lookaround naming in pattern matching and flattening.
regex-syntax/src/hir/mod.rs Rename functions, enums, and associated methods from Lookaround to LookAround.
regex-syntax/src/hir/visitor.rs Add LookAround support in visitor stack frames and traversal.
regex-automata/src/nfa/thompson/compiler.rs Update match arms to use LookAround instead of Lookaround.
regex-syntax/src/hir/literal.rs Adjust pattern matching for lookaround renaming.

Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.

@shilangyu shilangyu changed the title Fix small issues in addition of hir::LookAround Fix small issues in the addition of hir::LookAround Mar 8, 2025
@Multimodcrafter
Copy link
Owner

I like that you split the work into multiple commits. Should we keep the history by doing a rebase merge or should we squash?

Copy link
Owner

@Multimodcrafter Multimodcrafter left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@Multimodcrafter Multimodcrafter merged commit 0c28299 into captureless-lookbehinds Mar 11, 2025
@Multimodcrafter Multimodcrafter deleted the fix/hir branch March 11, 2025 14:30
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