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

Add parsing of lookarounds #4

Merged
merged 11 commits into from
Mar 13, 2025
3 changes: 3 additions & 0 deletions regex-cli/cmd/generate/fowler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,9 @@ fn count_capturing_groups_ast(ast: &regex_syntax::ast::Ast) -> usize {
let this = if group.is_capturing() { 1 } else { 0 };
this + count_capturing_groups_ast(&*group.ast)
}
Ast::LookAround(ref lookaround) => {
count_capturing_groups_ast(&lookaround.ast)
}
Ast::Alternation(ref alt) => {
alt.asts.iter().map(count_capturing_groups_ast).sum()
}
Expand Down
7 changes: 6 additions & 1 deletion regex-syntax/src/ast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,10 @@ pub enum ErrorKind {
///
/// The span of this error corresponds to the unclosed parenthesis.
GroupUnclosed,
/// An unclosed look-around, e.g., `(?<ab`.
///
/// The span of this error corresponds to the unclosed parenthesis.
LookAroundUnclosed,
/// An unopened group, e.g., `ab)`.
GroupUnopened,
/// The nest limit was exceeded. The limit stored here is the limit
Expand Down Expand Up @@ -254,6 +258,7 @@ impl core::fmt::Display for ErrorKind {
GroupNameInvalid => write!(f, "invalid capture group character"),
GroupNameUnexpectedEof => write!(f, "unclosed capture group name"),
GroupUnclosed => write!(f, "unclosed group"),
LookAroundUnclosed => write!(f, "unclosed look-around"),
GroupUnopened => write!(f, "unopened group"),
NestLimitExceeded(limit) => write!(
f,
Expand Down Expand Up @@ -526,7 +531,7 @@ impl Ast {
}

/// Create a "look-around" AST item.
pub fn look_around(e: LookAround) -> Ast {
pub fn lookaround(e: LookAround) -> Ast {
Ast::LookAround(Box::new(e))
}

Expand Down
Loading