summaryrefslogtreecommitdiff
path: root/MLKClosure.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 12:44:25 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-27 12:44:25 +0200
commitcb23a76bbd3b7b1ccf4a5ec8894437e449a9047d (patch)
treec3a2a88747a51bf02a4ca028b9a12462eb549ec7 /MLKClosure.h
parent01703b9a42e4dac6ae83127ba8fc224e6f581c92 (diff)
MLKInterpreter: Implement the %LAMBDA operator.
Diffstat (limited to 'MLKClosure.h')
-rw-r--r--MLKClosure.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/MLKClosure.h b/MLKClosure.h
index e8a20d4..8fd30d7 100644
--- a/MLKClosure.h
+++ b/MLKClosure.h
@@ -17,9 +17,12 @@
*/
#import "MLKLispValue.h"
+#import "MLKEnvironment.h"
#import "MLKFuncallable.h"
+#import "MLKFunction.h"
-@class MLKFunction, NSArray, NSData;
+#import <Foundation/NSArray.h>
+#import <Foundation/NSData.h>
@interface MLKClosure : MLKLispValue <MLKFuncallable>