(_: RecursionLimitError)
| 263 | |
| 264 | impl From<RecursionLimitError> for ParserError { |
| 265 | fn from(_: RecursionLimitError) -> ParserError { |
| 266 | ParserError { |
| 267 | pos: 0, |
| 268 | message: format!( |
| 269 | "statement exceeds nested expression limit of {}", |
| 270 | RECURSION_LIMIT |
| 271 | ), |
| 272 | } |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | impl ParserError { |