| 321 | fn expr_contains_await(expr: &ast::Expr) -> bool { |
| 322 | use ast::visitor::Visitor; |
| 323 | struct AwaitFinder(bool); |
| 324 | impl ast::visitor::Visitor<'_> for AwaitFinder { |
| 325 | fn visit_expr(&mut self, expr: &ast::Expr) { |
| 326 | if !self.0 { |
no outgoing calls
no test coverage detected