fix(tvix/eval): address all current clippy lints

Change-Id: I758fc4f3b9078de7ca6228a75a4351c3e085c4cf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6272
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-08-25 18:39:27 +03:00 committed by tazjin
parent 39b01c3029
commit edee8eecdf
6 changed files with 10 additions and 13 deletions

View file

@ -424,15 +424,14 @@ impl Compiler {
fn compile_has_attr(&mut self, node: ast::HasAttr) {
// Put the attribute set on the stack.
self.compile(node.expr().unwrap());
let mut count = 0;
// Push all path fragments with an operation for fetching the
// next nested element, for all fragments except the last one.
for fragment in node.attrpath().unwrap().attrs() {
for (count, fragment) in node.attrpath().unwrap().attrs().enumerate() {
if count > 0 {
self.chunk().push_op(OpCode::OpAttrOrNotFound);
}
count += 1;
self.compile_attr(fragment);
}
@ -950,7 +949,7 @@ impl Compiler {
self.scope_mut().locals.push(Local {
depth,
name: name.into(),
name,
node: Some(node),
phantom: false,
used: false,