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

Method new

regex/regex-syntax/src/ast/parse.rs:135–141  ·  view source on GitHub ↗

Create a new parser builder with a default configuration.

()

Source from the content-addressed store, hash-verified

133impl ParserBuilder {
134 /// Create a new parser builder with a default configuration.
135 pub fn new() -> ParserBuilder {
136 ParserBuilder {
137 ignore_whitespace: false,
138 nest_limit: 250,
139 octal: false,
140 }
141 }
142
143 /// Build a parser from this configuration with the given pattern.
144 pub fn build(&self) -> Parser {

Callers

nothing calls this directly

Calls 1

buildMethod · 0.45

Tested by

no test coverage detected