summaryrefslogtreecommitdiff
path: root/MLKLexicalContext.h
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-10-01 10:32:17 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-10-01 10:32:17 +0200
commit8c28cc5aaeeb3546e4c113734e18285699bf779e (patch)
tree61a9c97aa9e4c70314daed2f8d17b4f2bd36b39f /MLKLexicalContext.h
parentf3cc34c256ed93e09541d1019e00e45012075920 (diff)
LLVM compiler: Support FUNCTION.
Diffstat (limited to 'MLKLexicalContext.h')
-rw-r--r--MLKLexicalContext.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/MLKLexicalContext.h b/MLKLexicalContext.h
index f8b7a14..0e51f2c 100644
--- a/MLKLexicalContext.h
+++ b/MLKLexicalContext.h
@@ -22,6 +22,9 @@
#import <Foundation/NSDictionary.h>
#import <Foundation/NSSet.h>
+#include <stdint.h>
+
+
@class MLKEnvironment, MLKLexicalEnvironment, MLKSymbol, NSSet,
NSMutableDictionary, NSString, MLKCons;
@@ -95,6 +98,7 @@
-(BOOL) variableIsLexical:(MLKSymbol *)symbol;
-(BOOL) variableIsGlobal:(id)name;
-(BOOL) functionIsInline:(MLKSymbol *)symbol;
+-(BOOL) functionIsGlobal:(id)name;
-(id) propertyForVariable:(id)name key:(id)key;
-(void) setDeepProperty:(id)object
@@ -111,6 +115,7 @@
-(void *) functionCellForSymbol:(id)name;
-(void *) closureDataPointerForSymbol:(id)name;
+-(intptr_t *) closureDataLengthForSymbol:(id)name;
-(id) bindingForSymbol:(id)name;
-(void) dealloc;