Parse the regular expression into an abstract syntax tree.
(&mut self, pattern: &str)
| 342 | |
| 343 | /// Parse the regular expression into an abstract syntax tree. |
| 344 | pub fn parse(&mut self, pattern: &str) -> Result<Ast> { |
| 345 | ParserI::new(self, pattern).parse() |
| 346 | } |
| 347 | |
| 348 | /// Parse the regular expression and return an abstract syntax tree with |
| 349 | /// all of the comments found in the pattern. |
no test coverage detected