summaryrefslogtreecommitdiff
path: root/MLKDynamicContext.h
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 20:30:55 +0200
committerMatthias Andreas Benkard <matthias@benkard.de>2008-06-14 20:30:55 +0200
commit51e2909e615867293d949217073093404a2c1139 (patch)
treeca40bc1c7f2a3ab4ed2d621d75762364a6ec31b1 /MLKDynamicContext.h
parentcfc17a412d17cac2aa8ad31e434c803a4a7d21b3 (diff)
MLKDynamicContext: Implement -findHandler:.
Diffstat (limited to 'MLKDynamicContext.h')
-rw-r--r--MLKDynamicContext.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/MLKDynamicContext.h b/MLKDynamicContext.h
index aa3614f..bd08800 100644
--- a/MLKDynamicContext.h
+++ b/MLKDynamicContext.h
@@ -25,8 +25,8 @@
MLKEnvironment *_conditionHandlers;
MLKEnvironment *_restarts;
MLKEnvironment *_catchTags;
- MLKClosure *_currentConditionHandler; // needed for the Condition Firewall
MLKEnvironment *_environment;
+ MLKEnvironment *_activeHandlerEnvironment; // needed for the Condition Firewall
MLKDynamicContext *_parent;
}
@@ -35,7 +35,7 @@
handlers:(NSDictionary *)handlers
restarts:(NSDictionary *)restarts
catchTags:(NSDictionary *)catchTags
- currentHandler:(MLKClosure *)handler;
+ activeHandlerEnvironment:(MLKEnvironment *)handlerEnv;
-(MLKDynamicContext *) pushContext;