From e283991f902c38af8e6b5c6ae299911d120d8bcf Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 16 Feb 2021 23:41:24 -0800 Subject: Add local functions and closures --- src/com/craftinginterpreters/lox/Interpreter.java | 2 +- src/com/craftinginterpreters/lox/LoxFunction.java | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/com/craftinginterpreters/lox/Interpreter.java b/src/com/craftinginterpreters/lox/Interpreter.java index 4549e11..3e3be86 100644 --- a/src/com/craftinginterpreters/lox/Interpreter.java +++ b/src/com/craftinginterpreters/lox/Interpreter.java @@ -153,7 +153,7 @@ class Interpreter implements Expr.Visitor, Stmt.Visitor { @Override public Void visitFunctionStmt(Stmt.Function stmt) { - LoxFunction function = new LoxFunction(stmt); + LoxFunction function = new LoxFunction(stmt, environment); environment.define(stmt.name.lexeme, function); return null; } diff --git a/src/com/craftinginterpreters/lox/LoxFunction.java b/src/com/craftinginterpreters/lox/LoxFunction.java index 0f7ebd4..fb3e8e3 100644 --- a/src/com/craftinginterpreters/lox/LoxFunction.java +++ b/src/com/craftinginterpreters/lox/LoxFunction.java @@ -4,8 +4,10 @@ import java.util.List; class LoxFunction implements LoxCallable { private final Stmt.Function declaration; + private final Environment closure; - LoxFunction(Stmt.Function declaration) { + LoxFunction(Stmt.Function declaration, Environment closure) { + this.closure = closure; this.declaration = declaration; } @@ -16,7 +18,7 @@ class LoxFunction implements LoxCallable { @Override public Object call(Interpreter interpreter, List arguments) { - Environment environment = new Environment(interpreter.globals); + Environment environment = new Environment(closure); for (int i = 0; i < declaration.params.size(); i++) { environment.define(declaration.params.get(i).lexeme, arguments.get(i)); -- cgit v1.2.3-54-g00ecf