(&mut self, arg: &ast::Parameter)
| 510 | } |
| 511 | |
| 512 | fn unparse_arg(&mut self, arg: &ast::Parameter) -> fmt::Result { |
| 513 | self.p_id(&arg.name)?; |
| 514 | if let Some(ann) = &arg.annotation { |
| 515 | write!(self, ": {}", UnparseExpr::new(ann, self.source))?; |
| 516 | } |
| 517 | Ok(()) |
| 518 | } |
| 519 | |
| 520 | fn unparse_comp(&mut self, generators: &[ast::Comprehension]) -> fmt::Result { |
| 521 | for comp in generators { |
no test coverage detected