From 9c54dee454bf03c44c2f33b5e9af37adc0d5c23f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20H=C3=B6lting?= <87192362+moritz-hoelting@users.noreply.github.com> Date: Tue, 11 Mar 2025 21:00:50 +0100 Subject: [PATCH] remove possibility of using same transpiler twice --- src/lib.rs | 5 ++--- src/transpile/transpiler.rs | 14 ++++---------- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 8713870..2898c96 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -176,9 +176,8 @@ where tracing::info!("Transpiling the source code."); - let mut transpiler = Transpiler::new(main_namespace_name, pack_format); - transpiler.transpile(&programs, handler)?; - let datapack = transpiler.into_datapack(); + let datapack = + Transpiler::new(main_namespace_name, pack_format).transpile(&programs, handler)?; if handler.has_received() { return Err(Error::other( diff --git a/src/transpile/transpiler.rs b/src/transpile/transpiler.rs index 3d350bb..8f5bba3 100644 --- a/src/transpile/transpiler.rs +++ b/src/transpile/transpiler.rs @@ -69,22 +69,16 @@ impl Transpiler { } } - /// Consumes the transpiler and returns the resulting datapack. - #[must_use] - pub fn into_datapack(self) -> Datapack { - self.datapack - } - - /// Transpiles the given programs. + /// Transpiles the given programs and returns the resulting datapack. /// /// # Errors /// - [`TranspileError::MissingFunctionDeclaration`] If a called function is missing #[tracing::instrument(level = "trace", skip_all)] pub fn transpile( - &mut self, + mut self, programs: &[ProgramFile], handler: &impl Handler, - ) -> Result<(), TranspileError> { + ) -> Result { tracing::trace!("Transpiling program declarations"); for program in programs { let program_identifier = program @@ -145,7 +139,7 @@ impl Transpiler { ); } - Ok(()) + Ok(self.datapack) } /// Transpiles the given program.