Apply formatting

This commit is contained in:
Félix Saparelli 2022-08-15 17:44:15 +12:00
parent 7d3116f546
commit 8efffbfbc0
No known key found for this signature in database
GPG key ID: B948C4BAE44FC474
10 changed files with 171 additions and 119 deletions

View file

@ -290,12 +290,12 @@ impl CodeGenerator {
} else {
Some(Name::fast(idx))
}
} else { self
.cur_block_codeobj()
.freevars
.iter()
.position(|f| &**f == name)
.map(Name::deref)
} else {
self.cur_block_codeobj()
.freevars
.iter()
.position(|f| &**f == name)
.map(Name::deref)
}
}