Missed a rename in previous commit
This commit is contained in:
parent
95ddd34f9c
commit
a89be8632c
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ impl Callable for Function {
|
||||||
let param_env = InterpreterState {
|
let param_env = InterpreterState {
|
||||||
environment: Environment::create_child(&self.env),
|
environment: Environment::create_child(&self.env),
|
||||||
globals: es.globals.clone(),
|
globals: es.globals.clone(),
|
||||||
variables: es.variables,
|
locals: es.locals,
|
||||||
};
|
};
|
||||||
for (arg, value) in izip!(self.params.iter(), arguments.into_iter()) {
|
for (arg, value) in izip!(self.params.iter(), arguments.into_iter()) {
|
||||||
param_env
|
param_env
|
||||||
|
|
Loading…
Reference in a new issue