refactor(tvix/derivation): move comma writing business up

write_input_derivations shouldn't need to write a comma to separate it
from the previous output from write_outputs.
This is better placed in the function calling all of these helper
functions.

Change-Id: I9ccc440e4665b52369ef39e75151b9a29469ce48
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8995
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2023-07-30 09:37:17 +02:00 committed by clbot
parent 3f856d8977
commit aa1982c085
2 changed files with 13 additions and 8 deletions

View file

@ -51,11 +51,23 @@ impl Derivation {
write::write_char(writer, write::PAREN_OPEN)?;
write::write_outputs(writer, &self.outputs)?;
write::write_char(writer, write::COMMA)?;
write::write_input_derivations(writer, &self.input_derivations)?;
write::write_char(writer, write::COMMA)?;
write::write_input_sources(writer, &self.input_sources)?;
write::write_char(writer, write::COMMA)?;
write::write_system(writer, &self.system)?;
write::write_char(writer, write::COMMA)?;
write::write_builder(writer, &self.builder)?;
write::write_char(writer, write::COMMA)?;
write::write_arguments(writer, &self.arguments)?;
write::write_char(writer, write::COMMA)?;
write::write_enviroment(writer, &self.environment)?;
write::write_char(writer, write::PAREN_CLOSE)?;