cargo fmt

This commit is contained in:
collin 2022-07-13 21:05:38 -07:00
parent 7d604748bd
commit f4a59c5745
2 changed files with 3 additions and 5 deletions

View File

@ -467,10 +467,7 @@ impl ParserContext<'_> {
None
};
Ok(CircuitVariableInitializer {
identifier,
expression,
})
Ok(CircuitVariableInitializer { identifier, expression })
}
/// Returns an [`Expression`] AST node if the next tokens represent a

View File

@ -192,7 +192,8 @@ impl<'a> CodeGenerator<'a> {
"into {dest} as {name};",
dest = destination_register,
name = name,
).expect("failed to write to string");
)
.expect("failed to write to string");
instructions.push_str(&circuit_init_instruction);