lambda-calc-1/expression/lambda/prettyprint_errors.c
2025-01-13 20:36:07 -06:00

21 lines
386 B
C

#include <debug.h>
#include "../prettyprint_errors.h"
#include "struct.h"
#include "prettyprint_errors.h"
struct stringtree* lambda_expression_prettyprint_errors(
struct expression* super)
{
ENTER;
struct lambda_expression* const this = (void*) super;
struct stringtree* tree = expression_prettyprint_errors(this->body);
EXIT;
return tree;
}