23 lines
343 B
C
23 lines
343 B
C
|
|
#include <debug.h>
|
|
|
|
#include <string/free.h>
|
|
|
|
#include <expression/free.h>
|
|
|
|
#include "struct.h"
|
|
#include "free.h"
|
|
|
|
void free_lambda_expression(
|
|
struct expression* super)
|
|
{
|
|
ENTER;
|
|
|
|
struct lambda_expression* this = (void*) super;
|
|
|
|
free_string(this->variable_name);
|
|
|
|
free_expression(this->body);
|
|
|
|
EXIT;
|
|
}
|