From 8953b347c562615fef3a8d500b0bb86f7f717a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20H=C3=B6lting?= <87192362+moritz-hoelting@users.noreply.github.com> Date: Fri, 23 Aug 2024 23:56:10 +0200 Subject: [PATCH] fix different function signature of eval_string when lua is disabled --- src/transpile/lua.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/transpile/lua.rs b/src/transpile/lua.rs index 172ee87..3c2e786 100644 --- a/src/transpile/lua.rs +++ b/src/transpile/lua.rs @@ -73,7 +73,7 @@ mod enabled { #[cfg(not(feature = "lua"))] mod disabled { use crate::{ - base::Handler, + base::{self, Handler}, syntax::syntax_tree::expression::LuaCode, transpile::error::{TranspileError, TranspileResult}, }; @@ -84,10 +84,7 @@ mod disabled { /// /// # Errors /// - If Lua code evaluation is disabled. - pub fn eval_string( - &self, - handler: &impl Handler, - ) -> TranspileResult { + pub fn eval_string(&self, handler: &impl Handler) -> TranspileResult { handler.receive(TranspileError::LuaDisabled); tracing::error!("Lua code evaluation is disabled"); Err(TranspileError::LuaDisabled)