(pattern: &str)
| 2309 | } |
| 2310 | |
| 2311 | fn parser(pattern: &str) -> ParserI<Parser> { |
| 2312 | ParserI::new(Parser::new(), pattern) |
| 2313 | } |
| 2314 | |
| 2315 | fn parser_octal(pattern: &str) -> ParserI<Parser> { |
| 2316 | let parser = ParserBuilder::new().octal(true).build(); |
no outgoing calls