summaryrefslogtreecommitdiff
path: root/MLKDynamicContext.m
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-07-02 14:49:02 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-07-02 14:49:02 +0200
commit6b498f0726a38efc7802dad29a47633ad5aed6e7 (patch)
tree1fbe420d5dc6feb6cf1c05ef07b667c9628313f2 /MLKDynamicContext.m
parente2b4ef8369024d4cc4749f4262e8d39a59e3859d (diff)
Interpreter: Implement SET and %FSET.
Diffstat (limited to 'MLKDynamicContext.m')
-rw-r--r--MLKDynamicContext.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/MLKDynamicContext.m b/MLKDynamicContext.m
index f0d25b9..4261da3 100644
--- a/MLKDynamicContext.m
+++ b/MLKDynamicContext.m
@@ -381,6 +381,11 @@ static MLKDynamicContext *global_context;
[[self environment] addBindingForSymbol:symbol];
}
+-(MLKBinding *) bindingForSymbol:(MLKSymbol *)symbol
+{
+ return [[self environment] bindingForSymbol:symbol];
+}
+
-(BOOL) boundp:(MLKSymbol *)symbol
{
return [[self environment] boundp:symbol];