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.