lambda-calc-1/value/lazy/free.c
2025-01-13 20:36:07 -06:00

28 lines
395 B
C

#include <debug.h>
#include <environment/free.h>
#include <expression/free.h>
#include "../free.h"
#include "struct.h"
#include "free.h"
void free_lazy_value(
struct value* super)
{
ENTER;
struct lazy_value* this = (void*) super;
free_environment(this->environment);
free_expression(this->expression);
free_value(this->value);
EXIT;
}