fix different function signature of eval_string when lua is disabled

This commit is contained in:
Moritz Hölting 2024-08-23 23:56:10 +02:00
parent f73665d265
commit 8953b347c5
1 changed files with 2 additions and 5 deletions

View File

@ -73,7 +73,7 @@ mod enabled {
#[cfg(not(feature = "lua"))] #[cfg(not(feature = "lua"))]
mod disabled { mod disabled {
use crate::{ use crate::{
base::Handler, base::{self, Handler},
syntax::syntax_tree::expression::LuaCode, syntax::syntax_tree::expression::LuaCode,
transpile::error::{TranspileError, TranspileResult}, transpile::error::{TranspileError, TranspileResult},
}; };
@ -84,10 +84,7 @@ mod disabled {
/// ///
/// # Errors /// # Errors
/// - If Lua code evaluation is disabled. /// - If Lua code evaluation is disabled.
pub fn eval_string( pub fn eval_string(&self, handler: &impl Handler<base::Error>) -> TranspileResult<String> {
&self,
handler: &impl Handler<TranspileError>,
) -> TranspileResult<String> {
handler.receive(TranspileError::LuaDisabled); handler.receive(TranspileError::LuaDisabled);
tracing::error!("Lua code evaluation is disabled"); tracing::error!("Lua code evaluation is disabled");
Err(TranspileError::LuaDisabled) Err(TranspileError::LuaDisabled)