summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile15
-rw-r--r--MLKBackquoteReader.h3
-rw-r--r--MLKCharacter.h4
-rw-r--r--MLKClosure.h3
-rw-r--r--MLKCommaReader.h4
-rw-r--r--MLKCompiledProcedure.h3
-rw-r--r--MLKCons.h6
-rw-r--r--MLKDispatchingMacroCharacterReader.h3
-rw-r--r--MLKEnvironment.h3
-rw-r--r--MLKForeignProcedure.h3
-rw-r--r--MLKFunction.h5
-rw-r--r--MLKInterpretedClosure.h3
-rw-r--r--MLKLexicalContext.h3
-rw-r--r--MLKLispValue.h30
-rw-r--r--MLKLispValue.m23
-rw-r--r--MLKNumber.h4
-rw-r--r--MLKPackage.h4
-rw-r--r--MLKParenReader.h5
-rw-r--r--MLKQuoteReader.h3
-rw-r--r--MLKReadtable.h3
-rw-r--r--MLKSemicolonReader.h3
-rw-r--r--MLKSharpsignColonReader.h4
-rw-r--r--MLKStream.h4
-rw-r--r--MLKStringReader.h3
-rw-r--r--MLKSymbol.h4
-rw-r--r--MLKValuesFunction.h3
-rw-r--r--Toilet Lisp.xcodeproj/project.pbxproj8
27 files changed, 34 insertions, 125 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 87076d4..b884e03 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -56,14 +56,13 @@ ToiletKit_OBJC_FILES = functions.m globals.m MLKArray.m \
MLKForeignProcedure.m MLKForm.m MLKInteger.m \
MLKInterpretedClosure.m MLKInterpreter.m \
MLKLexicalContext.m MLKLexicalEnvironment.m \
- MLKLispValue.m MLKNumber.m MLKPackage.m \
- MLKParenReader.m MLKQuoteReader.m MLKRatio.m \
- MLKReader.m MLKReadtable.m MLKReaderError.m \
- MLKRoot.m MLKSemicolonReader.m \
- MLKSharpsignColonReader.m MLKSingleFloat.m \
- MLKStream.m MLKStringInputStream.m \
- MLKStringOutputStream.m MLKStringReader.m \
- MLKSymbol.m MLKThrowException.m \
+ MLKNumber.m MLKPackage.m MLKParenReader.m \
+ MLKQuoteReader.m MLKRatio.m MLKReader.m \
+ MLKReadtable.m MLKReaderError.m MLKRoot.m \
+ MLKSemicolonReader.m MLKSharpsignColonReader.m \
+ MLKSingleFloat.m MLKStream.m \
+ MLKStringInputStream.m MLKStringOutputStream.m \
+ MLKStringReader.m MLKSymbol.m MLKThrowException.m \
MLKValuesFunction.m NSObject-MLKPrinting.m \
NSString-MLKPrinting.m
ToiletKit_OBJCFLAGS = -Wall
diff --git a/MLKBackquoteReader.h b/MLKBackquoteReader.h
index 64553d7..9dec542 100644
--- a/MLKBackquoteReader.h
+++ b/MLKBackquoteReader.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
-@interface MLKBackquoteReader : MLKLispValue <MLKFuncallable>
+@interface MLKBackquoteReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKCharacter.h b/MLKCharacter.h
index 75e344a..def7142 100644
--- a/MLKCharacter.h
+++ b/MLKCharacter.h
@@ -16,12 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
-
#import <Foundation/NSString.h>
-@interface MLKCharacter : MLKLispValue
+@interface MLKCharacter : NSObject
{
unichar unichar;
}
diff --git a/MLKClosure.h b/MLKClosure.h
index 0ccc674..b9ac6b6 100644
--- a/MLKClosure.h
+++ b/MLKClosure.h
@@ -16,7 +16,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
#import "MLKEnvironment.h"
#import "MLKFuncallable.h"
#import "MLKFunction.h"
@@ -25,7 +24,7 @@
#import <Foundation/NSData.h>
-@interface MLKClosure : MLKLispValue <MLKFuncallable>
+@interface MLKClosure : NSObject <MLKFuncallable>
{
MLKFunction *_code;
NSData *_closedOverVariableVector;
diff --git a/MLKCommaReader.h b/MLKCommaReader.h
index 89c8501..e584e0b 100644
--- a/MLKCommaReader.h
+++ b/MLKCommaReader.h
@@ -17,11 +17,9 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
-
#import <Foundation/NSArray.h>
-@interface MLKCommaReader : MLKLispValue <MLKFuncallable>
+@interface MLKCommaReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKCompiledProcedure.h b/MLKCompiledProcedure.h
index 86809c1..175c085 100644
--- a/MLKCompiledProcedure.h
+++ b/MLKCompiledProcedure.h
@@ -17,7 +17,6 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import "MLKLexicalContext.h"
#import "MLKLexicalEnvironment.h"
@@ -25,7 +24,7 @@
#import <Foundation/NSString.h>
-@interface MLKCompiledProcedure : MLKLispValue <MLKFuncallable>
+@interface MLKCompiledProcedure : NSObject <MLKFuncallable>
{
void *_code;
}
diff --git a/MLKCons.h b/MLKCons.h
index eb6b2bd..84d3c56 100644
--- a/MLKCons.h
+++ b/MLKCons.h
@@ -16,12 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
+#import <Foundation/NSArray.h>
-@class NSArray;
-
-@interface MLKCons : MLKLispValue <NSCopying>
+@interface MLKCons : NSObject <NSCopying>
{
id _car;
id _cdr;
diff --git a/MLKDispatchingMacroCharacterReader.h b/MLKDispatchingMacroCharacterReader.h
index b4c2aba..5701ef1 100644
--- a/MLKDispatchingMacroCharacterReader.h
+++ b/MLKDispatchingMacroCharacterReader.h
@@ -17,14 +17,13 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import "MLKCharacter.h"
#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
-@interface MLKDispatchingMacroCharacterReader : MLKLispValue <MLKFuncallable>
+@interface MLKDispatchingMacroCharacterReader : NSObject <MLKFuncallable>
{
NSMutableDictionary *_readerMacros;
}
diff --git a/MLKEnvironment.h b/MLKEnvironment.h
index 9db0e55..bb8a4c8 100644
--- a/MLKEnvironment.h
+++ b/MLKEnvironment.h
@@ -17,7 +17,6 @@
*/
#import "MLKBinding.h"
-#import "MLKLispValue.h"
#import "MLKSymbol.h"
#import <Foundation/NSArray.h>
@@ -26,7 +25,7 @@
#import <Foundation/NSString.h>
-@interface MLKEnvironment : MLKLispValue
+@interface MLKEnvironment : NSObject
{
MLKEnvironment *_parent;
NSMutableDictionary *_bindings;
diff --git a/MLKForeignProcedure.h b/MLKForeignProcedure.h
index b460df3..c01772d 100644
--- a/MLKForeignProcedure.h
+++ b/MLKForeignProcedure.h
@@ -17,7 +17,6 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import "MLKLexicalContext.h"
#import "MLKLexicalEnvironment.h"
@@ -27,7 +26,7 @@
#import "functions.h"
-@interface MLKForeignProcedure : MLKLispValue <MLKFuncallable>
+@interface MLKForeignProcedure : NSObject <MLKFuncallable>
{
void *_code;
MLKForeignType *_argumentTypes;
diff --git a/MLKFunction.h b/MLKFunction.h
index 67e62c5..e266e74 100644
--- a/MLKFunction.h
+++ b/MLKFunction.h
@@ -16,10 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
-
-
-@interface MLKFunction : MLKLispValue
+@interface MLKFunction : NSObject
{
void (*_function)();
NSDictionary *_closedOverVariableIndices;
diff --git a/MLKInterpretedClosure.h b/MLKInterpretedClosure.h
index cd97230..4955c4c 100644
--- a/MLKInterpretedClosure.h
+++ b/MLKInterpretedClosure.h
@@ -17,7 +17,6 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import "MLKLexicalContext.h"
#import "MLKLexicalEnvironment.h"
@@ -25,7 +24,7 @@
#import <Foundation/NSString.h>
-@interface MLKInterpretedClosure : MLKLispValue <MLKFuncallable>
+@interface MLKInterpretedClosure : NSObject <MLKFuncallable>
{
id bodyForm;
MLKSymbol *lambdaListName;
diff --git a/MLKLexicalContext.h b/MLKLexicalContext.h
index 454df23..0a37a35 100644
--- a/MLKLexicalContext.h
+++ b/MLKLexicalContext.h
@@ -17,7 +17,6 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
#import <Foundation/NSSet.h>
@@ -26,7 +25,7 @@
NSMutableDictionary, NSString, MLKCons;
-@interface MLKLexicalContext : MLKLispValue
+@interface MLKLexicalContext : NSObject
{
NSMutableSet *_knownMacros;
NSMutableSet *_knownCompilerMacros;
diff --git a/MLKLispValue.h b/MLKLispValue.h
deleted file mode 100644
index ce24253..0000000
--- a/MLKLispValue.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* -*- mode: objc; coding: utf-8 -*- */
-/* Toilet Lisp, a Common Lisp subset for the Étoilé runtime.
- * Copyright (C) 2008 Matthias Andreas Benkard.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#import <Foundation/NSObject.h>
-
-
-@interface MLKLispValue : NSObject
-/*
-{
- int typeTag;
-}
-
-+(id) init;
-*/
-@end
diff --git a/MLKLispValue.m b/MLKLispValue.m
deleted file mode 100644
index dd64814..0000000
--- a/MLKLispValue.m
+++ /dev/null
@@ -1,23 +0,0 @@
-/* -*- mode: objc; coding: utf-8 -*- */
-/* Toilet Lisp, a Common Lisp subset for the Étoilé runtime.
- * Copyright (C) 2008 Matthias Andreas Benkard.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or (at
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include "MLKLispValue.h"
-
-
-@implementation MLKLispValue
-@end
diff --git a/MLKNumber.h b/MLKNumber.h
index 50a3899..e9c5843 100644
--- a/MLKNumber.h
+++ b/MLKNumber.h
@@ -16,10 +16,10 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
+#import <Foundation/NSObject.h>
-@interface MLKNumber : MLKLispValue
+@interface MLKNumber : NSObject
-(MLKNumber *) add:(MLKNumber *)arg;
-(MLKNumber *) subtract:(MLKNumber *)arg;
-(MLKNumber *) multiplyWith:(MLKNumber *)arg;
diff --git a/MLKPackage.h b/MLKPackage.h
index e0df3af..f4cf995 100644
--- a/MLKPackage.h
+++ b/MLKPackage.h
@@ -16,8 +16,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
-
#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSSet.h>
@@ -26,7 +24,7 @@
@class MLKSymbol;
-@interface MLKPackage : MLKLispValue
+@interface MLKPackage : NSObject
{
NSMutableDictionary *_accessible_symbols;
NSMutableSet *_present_symbols;
diff --git a/MLKParenReader.h b/MLKParenReader.h
index 778d2d6..0e16213 100644
--- a/MLKParenReader.h
+++ b/MLKParenReader.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
-@class NSArray;
+#import <Foundation/NSArray.h>
-@interface MLKParenReader : MLKLispValue <MLKFuncallable>
+@interface MLKParenReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKQuoteReader.h b/MLKQuoteReader.h
index 30ef9f6..7b24b91 100644
--- a/MLKQuoteReader.h
+++ b/MLKQuoteReader.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
-@interface MLKQuoteReader : MLKLispValue <MLKFuncallable>
+@interface MLKQuoteReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKReadtable.h b/MLKReadtable.h
index 600a22e..5776748 100644
--- a/MLKReadtable.h
+++ b/MLKReadtable.h
@@ -16,7 +16,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
#import "MLKFuncallable.h"
#import <Foundation/NSDictionary.h>
@@ -59,7 +58,7 @@ enum MLKConstituentTrait
};
-@interface MLKReadtable : MLKLispValue <NSCopying>
+@interface MLKReadtable : NSObject <NSCopying>
{
NSMutableDictionary *_syntaxTable;
NSMutableDictionary *_readerMacros;
diff --git a/MLKSemicolonReader.h b/MLKSemicolonReader.h
index 4d830c9..7023c68 100644
--- a/MLKSemicolonReader.h
+++ b/MLKSemicolonReader.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
-@interface MLKSemicolonReader : MLKLispValue <MLKFuncallable>
+@interface MLKSemicolonReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKSharpsignColonReader.h b/MLKSharpsignColonReader.h
index b6edd95..3fc3af8 100644
--- a/MLKSharpsignColonReader.h
+++ b/MLKSharpsignColonReader.h
@@ -17,11 +17,11 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
+#import <Foundation/NSObject.h>
-@interface MLKSharpsignColonReader : MLKLispValue <MLKFuncallable>
+@interface MLKSharpsignColonReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKStream.h b/MLKStream.h
index 3e4f597..737346c 100644
--- a/MLKStream.h
+++ b/MLKStream.h
@@ -16,13 +16,11 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
-
#import <Foundation/NSStream.h>
#import <Foundation/NSString.h>
-@interface MLKStream : MLKLispValue
+@interface MLKStream : NSObject
{
NSInputStream *_input;
NSOutputStream *_output;
diff --git a/MLKStringReader.h b/MLKStringReader.h
index 4ad7982..edd54dc 100644
--- a/MLKStringReader.h
+++ b/MLKStringReader.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
-@interface MLKStringReader : MLKLispValue <MLKFuncallable>
+@interface MLKStringReader : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/MLKSymbol.h b/MLKSymbol.h
index f0c4be3..3d5edfe 100644
--- a/MLKSymbol.h
+++ b/MLKSymbol.h
@@ -16,14 +16,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#import "MLKLispValue.h"
-
#import <Foundation/NSObject.h>
@class MLKPackage;
-@interface MLKSymbol : MLKLispValue <NSCopying>
+@interface MLKSymbol : NSObject <NSCopying>
{
NSString *name;
MLKPackage *homePackage;
diff --git a/MLKValuesFunction.h b/MLKValuesFunction.h
index 53e9c5d..d1c1869 100644
--- a/MLKValuesFunction.h
+++ b/MLKValuesFunction.h
@@ -17,11 +17,10 @@
*/
#import "MLKFuncallable.h"
-#import "MLKLispValue.h"
#import <Foundation/NSArray.h>
-@interface MLKValuesFunction : MLKLispValue <MLKFuncallable>
+@interface MLKValuesFunction : NSObject <MLKFuncallable>
-(NSArray *) applyToArray:(NSArray *)arguments;
@end
diff --git a/Toilet Lisp.xcodeproj/project.pbxproj b/Toilet Lisp.xcodeproj/project.pbxproj
index 3b55f24..f7664df 100644
--- a/Toilet Lisp.xcodeproj/project.pbxproj
+++ b/Toilet Lisp.xcodeproj/project.pbxproj
@@ -137,8 +137,6 @@
A7E5C4580E21695800A01D81 /* MLKLexicalContext.m in Sources */ = {isa = PBXBuildFile; fileRef = A7E5C4120E21695700A01D81 /* MLKLexicalContext.m */; };
A7E5C4590E21695800A01D81 /* MLKLexicalEnvironment.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E5C4130E21695700A01D81 /* MLKLexicalEnvironment.h */; };
A7E5C45A0E21695800A01D81 /* MLKLexicalEnvironment.m in Sources */ = {isa = PBXBuildFile; fileRef = A7E5C4140E21695700A01D81 /* MLKLexicalEnvironment.m */; };
- A7E5C45D0E21695800A01D81 /* MLKLispValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E5C4170E21695700A01D81 /* MLKLispValue.h */; };
- A7E5C45E0E21695800A01D81 /* MLKLispValue.m in Sources */ = {isa = PBXBuildFile; fileRef = A7E5C4180E21695700A01D81 /* MLKLispValue.m */; };
A7E5C4600E21695800A01D81 /* MLKPackage.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E5C41A0E21695700A01D81 /* MLKPackage.h */; };
A7E5C4610E21695800A01D81 /* MLKPackage.m in Sources */ = {isa = PBXBuildFile; fileRef = A7E5C41B0E21695700A01D81 /* MLKPackage.m */; };
A7E5C4620E21695800A01D81 /* MLKParenReader.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E5C41C0E21695700A01D81 /* MLKParenReader.h */; };
@@ -408,8 +406,6 @@
A7E5C4120E21695700A01D81 /* MLKLexicalContext.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLKLexicalContext.m; sourceTree = "<group>"; };
A7E5C4130E21695700A01D81 /* MLKLexicalEnvironment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLKLexicalEnvironment.h; sourceTree = "<group>"; };
A7E5C4140E21695700A01D81 /* MLKLexicalEnvironment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLKLexicalEnvironment.m; sourceTree = "<group>"; };
- A7E5C4170E21695700A01D81 /* MLKLispValue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLKLispValue.h; sourceTree = "<group>"; };
- A7E5C4180E21695700A01D81 /* MLKLispValue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLKLispValue.m; sourceTree = "<group>"; };
A7E5C4190E21695700A01D81 /* MLKLowLevelTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLKLowLevelTests.m; sourceTree = "<group>"; };
A7E5C41A0E21695700A01D81 /* MLKPackage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLKPackage.h; sourceTree = "<group>"; };
A7E5C41B0E21695700A01D81 /* MLKPackage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLKPackage.m; sourceTree = "<group>"; };
@@ -595,7 +591,6 @@
A7E5C40F0E21695700A01D81 /* MLKInterpreter.h */,
A7E5C4110E21695700A01D81 /* MLKLexicalContext.h */,
A7E5C4130E21695700A01D81 /* MLKLexicalEnvironment.h */,
- A7E5C4170E21695700A01D81 /* MLKLispValue.h */,
A7E5C41A0E21695700A01D81 /* MLKPackage.h */,
A7E5C41C0E21695700A01D81 /* MLKParenReader.h */,
A7E5C41E0E21695700A01D81 /* MLKQuoteReader.h */,
@@ -649,7 +644,6 @@
A7E5C4100E21695700A01D81 /* MLKInterpreter.m */,
A7E5C4120E21695700A01D81 /* MLKLexicalContext.m */,
A7E5C4140E21695700A01D81 /* MLKLexicalEnvironment.m */,
- A7E5C4180E21695700A01D81 /* MLKLispValue.m */,
A7E5C4190E21695700A01D81 /* MLKLowLevelTests.m */,
A7E5C41B0E21695700A01D81 /* MLKPackage.m */,
A7E5C41D0E21695700A01D81 /* MLKParenReader.m */,
@@ -694,7 +688,6 @@
A7E5C4550E21695800A01D81 /* MLKInterpreter.h in Headers */,
A7E5C4570E21695800A01D81 /* MLKLexicalContext.h in Headers */,
A7E5C4590E21695800A01D81 /* MLKLexicalEnvironment.h in Headers */,
- A7E5C45D0E21695800A01D81 /* MLKLispValue.h in Headers */,
A7E5C4600E21695800A01D81 /* MLKPackage.h in Headers */,
A7E5C4620E21695800A01D81 /* MLKParenReader.h in Headers */,
A7E5C4640E21695800A01D81 /* MLKQuoteReader.h in Headers */,
@@ -807,7 +800,6 @@
A7E5C4560E21695800A01D81 /* MLKInterpreter.m in Sources */,
A7E5C4580E21695800A01D81 /* MLKLexicalContext.m in Sources */,
A7E5C45A0E21695800A01D81 /* MLKLexicalEnvironment.m in Sources */,
- A7E5C45E0E21695800A01D81 /* MLKLispValue.m in Sources */,
A7E5C4610E21695800A01D81 /* MLKPackage.m in Sources */,
A7E5C4630E21695800A01D81 /* MLKParenReader.m in Sources */,
A7E5C4650E21695800A01D81 /* MLKQuoteReader.m in Sources */,