This kinds of stmts only act as a dummy to declear the stmt kind, we skip evaluate these stmts.
(&self, _stmt: &ast::Node)
| 152 | |
| 153 | /// This kinds of stmts only act as a dummy to declear the stmt kind, we skip evaluate these stmts. |
| 154 | fn visit_dummy_stmt(&self, _stmt: &ast::Node) -> Result<()> { |
| 155 | Ok(()) |
| 156 | } |
| 157 | |
| 158 | fn visit_decl_stmt(&mut self, stmt: &ast::Node) -> Result<()> { |
| 159 | if let ast::Clang::DeclStmt(_) = &stmt.kind { |