summaryrefslogtreecommitdiff
path: root/MLKInterpretedClosure.m
diff options
context:
space:
mode:
Diffstat (limited to 'MLKInterpretedClosure.m')
-rw-r--r--MLKInterpretedClosure.m9
1 files changed, 9 insertions, 0 deletions
diff --git a/MLKInterpretedClosure.m b/MLKInterpretedClosure.m
index 8b2fd9b..fd7fb19 100644
--- a/MLKInterpretedClosure.m
+++ b/MLKInterpretedClosure.m
@@ -85,4 +85,13 @@ static MLKSymbol *PROGN;
{
return [NSString stringWithFormat:@"<Interpreted closure @%p>", self];
}
+
+-(void) dealloc
+{
+ [super dealloc];
+ LDESTROY (bodyForm);
+ LDESTROY (lambdaListName);
+ LDESTROY (context);
+ LDESTROY (environment);
+}
@end