aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2021-02-16 23:41:24 -0800
committerGravatar Tom Willemse2021-02-16 23:41:24 -0800
commite283991f902c38af8e6b5c6ae299911d120d8bcf (patch)
treec58270e72017eb70b677c8b7ffcbf8b8a04cfc80
parent0dbf155da52c5db1cab2688b04c87386a55c5d5b (diff)
downloadcrafting-interpreters-e283991f902c38af8e6b5c6ae299911d120d8bcf.tar.gz
crafting-interpreters-e283991f902c38af8e6b5c6ae299911d120d8bcf.zip
Add local functions and closures
-rw-r--r--src/com/craftinginterpreters/lox/Interpreter.java2
-rw-r--r--src/com/craftinginterpreters/lox/LoxFunction.java6
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<Object>, Stmt.Visitor<Void> {
@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<Object> 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));