From bd264499c08c196aa2ce69702cba0829ab24788a Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Tue, 10 Jun 2008 16:52:52 +0200 Subject: Beginnings of a Lisp compiler. --- MLKUndefinedVariableException.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 MLKUndefinedVariableException.h (limited to 'MLKUndefinedVariableException.h') diff --git a/MLKUndefinedVariableException.h b/MLKUndefinedVariableException.h new file mode 100644 index 0000000..16005ce --- /dev/null +++ b/MLKUndefinedVariableException.h @@ -0,0 +1,17 @@ +/* -*- mode: objc; coding: utf-8 -*- */ +/* Copyright 2008, Matthias Benkard. */ + +#import + +@class MLKSymbol, MLKEnvironment; + + +@interface MLKUndefinedVariableException : NSException +{ + MLKSymbol *variableName; + MLKEnvironment *environment; +} + +-(MLKUndefinedVariableException *) initWithEnvironment:(id)environment + variableName:(id)symbol; +@end -- cgit v1.2.3