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

20 lines
398 B
C

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