-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
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.
hir::LookAround
There was a problem hiding this 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.
hir::LookAround
hir::LookAround
I like that you split the work into multiple commits. Should we keep the history by doing a rebase merge or should we squash? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
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.