From ddf78cc594ae390a8bfff95555dc285c1bbd28f5 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 10 Aug 2008 12:16:57 +0200 Subject: Modularise the compiler. --- MLKForm.h | 176 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 176 insertions(+) create mode 100644 MLKForm.h (limited to 'MLKForm.h') diff --git a/MLKForm.h b/MLKForm.h new file mode 100644 index 0000000..ceafcb9 --- /dev/null +++ b/MLKForm.h @@ -0,0 +1,176 @@ +/* -*- 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 . + */ + +#import "MLKForm.h" +#import "MLKLexicalContext.h" + +#import +#import + + +@interface MLKForm : NSObject +{ + id _form; + MLKLexicalContext *_context; + id _compiler; +} + +-(id) initWithObject:(id)object + inContext:(MLKLexicalContext *)context + forCompiler:(id)compiler; + +-(id) complete; ++(Class) dispatchClassForObject:(id)object; + ++(id) formWithObject:(id)object + inContext:(MLKLexicalContext *)context + forCompiler:(id)compiler; +@end + + +@interface MLKAtomicForm : MLKForm ++(Class) dispatchClassForObject:(id)object; +@end + + +@interface MLKSelfEvaluatingForm : MLKAtomicForm ++(Class) dispatchClassForObject:(id)object; +@end + + +@interface MLKSymbolForm : MLKAtomicForm ++(Class) dispatchClassForObject:(id)object; +@end + + +@interface MLKCompoundForm : MLKForm +{ + id _head; + id _tail; +} + +-(id) complete; ++(Class) dispatchClassForObject:(id)object; +@end + +@interface MLKSimpleCompoundForm : MLKCompoundForm +-(id) initWithObject:(id)object + inContext:(MLKLexicalContext *)context + forCompiler:(id)compiler; + ++(Class) dispatchClassForObject:(id)object; +@end + + +@interface MLKMacroCallForm : MLKSimpleCompoundForm +-(id) initWithObject:(id)object + inContext:(MLKLexicalContext *)context + forCompiler:(id)compiler; +@end + + +@interface MLKFunctionCallForm : MLKSimpleCompoundForm +@end + + +@interface MLKCatchForm : MLKCompoundForm +@end + + +@interface MLKSimpleDefmacroForm : MLKCompoundForm +@end + + +@interface MLKEvalWhenForm : MLKCompoundForm +@end + + +@interface MLKForeignLambdaForm : MLKCompoundForm +@end + + +@interface MLKFunctionForm : MLKCompoundForm +@end + + +@interface MLKIfForm : MLKCompoundForm +@end + + +@interface MLKInPackageForm : MLKCompoundForm +@end + + +@interface MLKSimpleLambdaForm : MLKCompoundForm +@end + + +@interface MLKSimpleMacroletForm : MLKCompoundForm +@end + + +@interface MLKSimpleFletForm : MLKCompoundForm +@end + + +@interface MLKLetForm : MLKCompoundForm +@end + + +@interface MLKSimpleLoopForm : MLKCompoundForm +@end + + +@interface MLKMultipleValueCallForm : MLKCompoundForm +@end + + +@interface MLKProgNForm : MLKCompoundForm +@end + + +@interface MLKProgVForm : MLKCompoundForm +@end + + +@interface MLKQuoteForm : MLKCompoundForm +@end + + +@interface MLKSetQForm : MLKCompoundForm +@end + + +@interface MLKFSetQForm : MLKCompoundForm +@end + + +@interface MLKSetForm : MLKCompoundForm +@end + + +@interface MLKFSetForm : MLKCompoundForm +@end + + +@interface MLKThrowForm : MLKCompoundForm +@end + + +@interface MLKUnwindProtectForm : MLKCompoundForm +@end -- cgit v1.2.3