From 68c6160a14be4e77b98cd704d9e641a03aefa332 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 30 Dec 2022 09:48:30 +0100 Subject: Recursion with max depth --- src/model/func.rs | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'src/model/func.rs') diff --git a/src/model/func.rs b/src/model/func.rs index f04b864e..3fb8f4d4 100644 --- a/src/model/func.rs +++ b/src/model/func.rs @@ -96,7 +96,7 @@ impl Func { pub fn call(&self, vm: &Vm, mut args: Args) -> SourceResult { let value = match self.0.as_ref() { Repr::Native(native) => (native.func)(vm, &mut args)?, - Repr::Closure(closure) => closure.call(vm, &mut args)?, + Repr::Closure(closure) => closure.call(vm, self, &mut args)?, Repr::With(wrapped, applied) => { args.items.splice(..0, applied.items.iter().cloned()); return wrapped.call(vm, args); @@ -115,7 +115,7 @@ impl Func { let route = Route::default(); let id = SourceId::detached(); let scopes = Scopes::new(None); - let vm = Vm::new(world, route.track(), id, scopes); + let vm = Vm::new(world, route.track(), id, scopes, 0); self.call(&vm, args) } @@ -274,12 +274,17 @@ pub(super) struct Closure { impl Closure { /// Call the function in the context with the arguments. - fn call(&self, vm: &Vm, args: &mut Args) -> SourceResult { + fn call(&self, vm: &Vm, this: &Func, args: &mut Args) -> SourceResult { // Don't leak the scopes from the call site. Instead, we use the scope // of captured variables we collected earlier. let mut scopes = Scopes::new(None); scopes.top = self.captured.clone(); + // Provide the closure itself for recursive calls. + if let Some(name) = &self.name { + scopes.top.define(name.clone(), Value::Func(this.clone())); + } + // Parse the arguments according to the parameter list. for (param, default) in &self.params { scopes.top.define( @@ -304,7 +309,7 @@ impl Closure { let route = if detached { fresh.track() } else { vm.route }; // Evaluate the body. - let mut sub = Vm::new(vm.world, route, self.location, scopes); + let mut sub = Vm::new(vm.world, route, self.location, scopes, vm.depth + 1); let result = self.body.eval(&mut sub); // Handle control flow. @@ -378,6 +383,10 @@ impl<'a> CapturesVisitor<'a> { } } + if let Some(name) = expr.name() { + self.bind(name); + } + for param in expr.params() { match param { ast::Param::Pos(ident) => self.bind(ident), @@ -456,6 +465,7 @@ mod tests { #[track_caller] fn test(text: &str, result: &[&str]) { let mut scopes = Scopes::new(None); + scopes.top.define("f", 0); scopes.top.define("x", 0); scopes.top.define("y", 0); scopes.top.define("z", 0); @@ -477,6 +487,8 @@ mod tests { test("#let x = x", &["x"]); test("#let x; {x + y}", &["y"]); test("#let f(x, y) = x + y", &[]); + test("#let f(x, y) = f", &[]); + test("#let f = (x, y) => f", &["f"]); // Closure with different kinds of params. test("{(x, y) => x + z}", &["z"]); -- cgit v1.2.3