Lines Matching defs:parse
11 /// [AST `ParserBuilder`](ast/parse/struct.ParserBuilder.html)
16 ast: ast::parse::ParserBuilder,
152 /// default), a regular expression will fail to parse if Unicode mode is
170 /// see the [`ast::parse`](ast/parse/index.html) module.
176 ast: ast::parse::Parser,
183 /// The parser can be run with `parse` method. The parse method returns
195 pub fn parse(&mut self, pattern: &str) -> Result<hir::Hir> {
196 let ast = self.ast.parse(pattern)?;