chore(tvix/eval): fix all current clippy lints
Change-Id: I28d6af8cb408f8427a75d30b9120aaa809a1ea40 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6784 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
This commit is contained in:
parent
d54aeb1f20
commit
e31f8f735f
4 changed files with 6 additions and 6 deletions
|
|
@ -553,7 +553,7 @@ impl Compiler<'_> {
|
|||
}
|
||||
|
||||
// Push the set onto the stack
|
||||
self.compile(slot, set.clone());
|
||||
self.compile(slot, set);
|
||||
|
||||
// Compile each key fragment and emit access instructions.
|
||||
//
|
||||
|
|
@ -604,7 +604,7 @@ impl Compiler<'_> {
|
|||
path: ast::Attrpath,
|
||||
default: ast::Expr,
|
||||
) {
|
||||
self.compile(slot, set.clone());
|
||||
self.compile(slot, set);
|
||||
let mut jumps = vec![];
|
||||
|
||||
for fragment in path.attrs() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue