summaryrefslogtreecommitdiff
path: root/MLKInterpreter.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-22 14:42:47 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-22 14:42:47 +0200
commit1641912f2c9967b494187e7522d31bb00c53063c (patch)
treecce29bb068ad0fababda364c210c3a99be7ebdaa /MLKInterpreter.h
parent9960b8e94943867cc321a5145c327188e14d4d44 (diff)
Add classes MLKLexicalEnvironment and MLKReadEvalPrintLoop.
Diffstat (limited to 'MLKInterpreter.h')
-rw-r--r--MLKInterpreter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKInterpreter.h b/MLKInterpreter.h
index 1129c83..8fcc1ec 100644
--- a/MLKInterpreter.h
+++ b/MLKInterpreter.h
@@ -18,7 +18,7 @@
#import <Foundation/NSObject.h>
-@class MLKLexicalContext, MLKEnvironment;
+@class MLKLexicalContext, MLKLexicalEnvironment;
@interface MLKInterpreter : NSObject
@@ -26,5 +26,5 @@
+(id) eval:(id)program
inLexicalContext:(MLKLexicalContext *)context
- withEnvironment:(MLKEnvironment *)lexenv;
+ withEnvironment:(MLKLexicalEnvironment *)lexenv;
@end