Interpreter - Move function call arguments

This commit is contained in:
Emmanuel BENOîT 2023-01-02 17:45:19 +01:00
parent 1ad55e95f5
commit 8ab144f3c5

View file

@ -14,6 +14,6 @@ pub trait Callable: Debug + ToString {
fn call(
&self,
environment: &EnvironmentRef,
arguments: &Vec<Value>,
arguments: Vec<Value>,
) -> Result<Value, InterpreterError>;
}