summaryrefslogtreecommitdiff
path: root/MLKUndefinedVariableException.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-10 16:52:52 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-10 16:52:52 +0200
commitbd264499c08c196aa2ce69702cba0829ab24788a (patch)
treecbead7c232beb7f9b789458d0bc3734960468e01 /MLKUndefinedVariableException.h
Beginnings of a Lisp compiler.
Diffstat (limited to 'MLKUndefinedVariableException.h')
-rw-r--r--MLKUndefinedVariableException.h17
1 files changed, 17 insertions, 0 deletions
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 <Foundation/NSException.h>
+
+@class MLKSymbol, MLKEnvironment;
+
+
+@interface MLKUndefinedVariableException : NSException
+{
+ MLKSymbol *variableName;
+ MLKEnvironment *environment;
+}
+
+-(MLKUndefinedVariableException *) initWithEnvironment:(id)environment
+ variableName:(id)symbol;
+@end