Home
last modified time | relevance | path

Searched refs:has_subexprs (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/regex-syntax/src/ast/
Dmod.rs520 fn has_subexprs(&self) -> bool { in has_subexprs() method
1371 Ast::Repetition(ref x) if !x.ast.has_subexprs() => return, in drop()
1372 Ast::Group(ref x) if !x.ast.has_subexprs() => return, in drop()
/external/rust/crates/regex-syntax/src/hir/
Dmod.rs708 pub fn has_subexprs(&self) -> bool { in has_subexprs() method
1440 HirKind::Group(ref x) if !x.hir.kind.has_subexprs() => return, in drop()
1441 HirKind::Repetition(ref x) if !x.hir.kind.has_subexprs() => return, in drop()