Lines Matching refs:hir
8 use regex_syntax::hir::literal::Literals;
9 use regex_syntax::hir::Hir;
14 regex-debug [options] hir <pattern>
135 let hir = parser.parse(&args.arg_pattern)?;
136 println!("{:#?}", hir);
221 use regex_syntax::hir::{self, HirKind};
225 let hir = ParserBuilder::new()
228 let cls = match hir.into_kind() {
229 HirKind::Class(hir::Class::Unicode(cls)) => cls,
254 use regex_syntax::hir::{self, HirKind};
258 let hir = ParserBuilder::new()
261 let cls = match hir.into_kind() {
262 HirKind::Class(hir::Class::Unicode(cls)) => cls,