chore(fmt): add legacy stubs and strip trailing whitespace to unblock cargo fmt

This commit is contained in:
Selfhosting Dev
2025-09-17 07:43:07 +09:00
parent fcf8ce1f3c
commit adbb0201a9
385 changed files with 35622 additions and 15004 deletions

View File

@ -10,7 +10,9 @@ impl super::MirBuilder {
) -> Result<ValueId, String> {
let callee_id = self.build_expression_impl(callee)?;
let mut arg_ids: Vec<ValueId> = Vec::new();
for a in arguments { arg_ids.push(self.build_expression_impl(a)?); }
for a in arguments {
arg_ids.push(self.build_expression_impl(a)?);
}
let dst = self.value_gen.next();
self.emit_instruction(super::MirInstruction::Call {
dst: Some(dst),
@ -21,4 +23,3 @@ impl super::MirBuilder {
Ok(dst)
}
}