Interpreter - Move function call arguments
This commit is contained in:
parent
1ad55e95f5
commit
8ab144f3c5
1 changed files with 1 additions and 1 deletions
|
@ -14,6 +14,6 @@ pub trait Callable: Debug + ToString {
|
|||
fn call(
|
||||
&self,
|
||||
environment: &EnvironmentRef,
|
||||
arguments: &Vec<Value>,
|
||||
arguments: Vec<Value>,
|
||||
) -> Result<Value, InterpreterError>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue