chore: cargo clippy
This commit is contained in:
@@ -199,7 +199,7 @@ impl<'gc> JITContext<'gc> {
|
||||
|
||||
pub fn compile_seq(
|
||||
&self,
|
||||
opcodes: impl Iterator<Item = OpCode> + ExactSizeIterator + DoubleEndedIterator,
|
||||
opcodes: impl ExactSizeIterator<Item = OpCode> + DoubleEndedIterator,
|
||||
vm: &'gc VM<'gc>,
|
||||
) -> Result<JITFunc<'gc>> {
|
||||
let mut stack = Stack::<_, STACK_SIZE>::new();
|
||||
@@ -330,8 +330,7 @@ impl<'gc> JITContext<'gc> {
|
||||
"call_capture_env",
|
||||
)?
|
||||
.try_as_basic_value()
|
||||
.unwrap_left()
|
||||
.into(),
|
||||
.unwrap_left(),
|
||||
)?,
|
||||
OpCode::ForceValue => {
|
||||
let thunk = stack.pop();
|
||||
|
||||
Reference in New Issue
Block a user