Clippity clip clippy
This commit is contained in:
parent
ecc8f2ec8b
commit
98eef78583
1 changed files with 3 additions and 4 deletions
|
@ -232,10 +232,9 @@ where
|
|||
'b: 'a,
|
||||
{
|
||||
rs.define_this();
|
||||
methods
|
||||
.iter()
|
||||
.map(|method| rs.with_scope(|rs| resolve_function(rs, &method.params, &method.body)))
|
||||
.collect()
|
||||
methods.iter().try_for_each(|method| {
|
||||
rs.with_scope(|rs| resolve_function(rs, &method.params, &method.body))
|
||||
})
|
||||
}
|
||||
|
||||
/// Helper trait used to visit the various AST nodes with the resolver.
|
||||
|
|
Loading…
Reference in a new issue