(pattern: &str)
| 2323 | } |
| 2324 | |
| 2325 | fn parser_ignore_whitespace(pattern: &str) -> ParserI<Parser> { |
| 2326 | let p = ParserBuilder::new().ignore_whitespace(true).build(); |
| 2327 | ParserI::new(p, pattern) |
| 2328 | } |
| 2329 | |
| 2330 | /// Short alias for creating a new span. |
| 2331 | fn nspan(start: Position, end: Position) -> Span { |
nothing calls this directly
no test coverage detected