aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/craftinginterpreters/lox/LoxCallable.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/craftinginterpreters/lox/LoxCallable.java')
-rw-r--r--src/com/craftinginterpreters/lox/LoxCallable.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/com/craftinginterpreters/lox/LoxCallable.java b/src/com/craftinginterpreters/lox/LoxCallable.java
deleted file mode 100644
index 4204c20..0000000
--- a/src/com/craftinginterpreters/lox/LoxCallable.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.craftinginterpreters.lox;
-
-import java.util.List;
-
-interface LoxCallable {
- int arity();
-
- Object call(Interpreter interpreter, List<Object> arguments);
-}