Build a parser from this configuration with the given pattern.
(&self)
| 25 | |
| 26 | /// Build a parser from this configuration with the given pattern. |
| 27 | pub fn build(&self) -> Parser { |
| 28 | Parser { |
| 29 | ast: self.ast.build(), |
| 30 | hir: self.hir.build(), |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | /// Set the nesting limit for this parser. |
| 35 | /// |
no outgoing calls
no test coverage detected