MCPcopy Create free account
hub / github.com/davidblewett/rure-python / parser_nest_limit

Function parser_nest_limit

regex/regex-syntax/src/ast/parse.rs:2320–2323  ·  view source on GitHub ↗
(pattern: &str, nest_limit: u32)

Source from the content-addressed store, hash-verified

2318 }
2319
2320 fn parser_nest_limit(pattern: &str, nest_limit: u32) -> ParserI<Parser> {
2321 let p = ParserBuilder::new().nest_limit(nest_limit).build();
2322 ParserI::new(p, pattern)
2323 }
2324
2325 fn parser_ignore_whitespace(pattern: &str) -> ParserI<Parser> {
2326 let p = ParserBuilder::new().ignore_whitespace(true).build();

Callers

nothing calls this directly

Calls 2

buildMethod · 0.45
nest_limitMethod · 0.45

Tested by

no test coverage detected