(self, ast: &Ast)
| 2124 | } |
| 2125 | |
| 2126 | fn check(self, ast: &Ast) -> Result<()> { |
| 2127 | ast::visit(ast, self) |
| 2128 | } |
| 2129 | |
| 2130 | fn increment_depth(&mut self, span: &Span) -> Result<()> { |
| 2131 | let new = self.depth.checked_add(1).ok_or_else(|| self.p.error( |
no test coverage detected