summaryrefslogtreecommitdiff
path: root/MLKLexicalContext.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-09-02 10:22:24 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-09-02 10:22:24 +0200
commit1e1bbbf51144d68dcef7d1abf8dab0f3ade3fb1a (patch)
tree36601b862fa547ac51e253cf0456c8e0f0e021f3 /MLKLexicalContext.h
parent1dc0cdf8416eb0e98017d1f833ac1e9e6077fda5 (diff)
LLVM compiler: Access closure variables through the closure data pointer.
Diffstat (limited to 'MLKLexicalContext.h')
-rw-r--r--MLKLexicalContext.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/MLKLexicalContext.h b/MLKLexicalContext.h
index 3e703e5..f8b7a14 100644
--- a/MLKLexicalContext.h
+++ b/MLKLexicalContext.h
@@ -96,12 +96,15 @@
-(BOOL) variableIsGlobal:(id)name;
-(BOOL) functionIsInline:(MLKSymbol *)symbol;
--(id) deepPropertyForVariable:(id)name key:(id)key;
+-(id) propertyForVariable:(id)name key:(id)key;
-(void) setDeepProperty:(id)object
forVariable:(id)name
key:(id)key;
+-(void) addShallowProperty:(id)object
+ forVariable:(id)name
+ key:(id)key;
--(id) deepPropertyForFunction:(id)name key:(id)key;
+-(id) propertyForFunction:(id)name key:(id)key;
-(void) setDeepProperty:(id)object
forFunction:(id)name
key:(id)key;