summaryrefslogtreecommitdiff
path: root/MLKLexicalContext.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-23 19:02:42 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-23 19:02:42 +0200
commit3aa255629a915314b71c04820833b683ff9234fc (patch)
treeef0ed440cadee353c3800cd8232ee483bf7508c0 /MLKLexicalContext.h
parent1c181e7b07ee551d6f76416972fe38ff411ffc40 (diff)
Initialise the global environment on startup.
Diffstat (limited to 'MLKLexicalContext.h')
-rw-r--r--MLKLexicalContext.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/MLKLexicalContext.h b/MLKLexicalContext.h
index 3bc5078..5eca3d6 100644
--- a/MLKLexicalContext.h
+++ b/MLKLexicalContext.h
@@ -35,12 +35,15 @@
MLKLexicalContext *_parent;
}
++(void) initialize;
+
-(MLKLexicalContext *) initWithParent:(MLKLexicalContext *)aContext
variables:(NSSet *)vars
functions:(NSSet *)functions
goTags:(NSDictionary *)goTags
macros:(NSDictionary *)macros
- declarations:(NSDictionary *)declarations;
+ symbolMacros:(NSDictionary *)symbolMacros
+ declarations:(id)declarations;
+(MLKLexicalContext *) globalContext;