20 lines
398 B
C
20 lines
398 B
C
|
|
#include <debug.h>
|
|
|
|
#include <expression/prettyprint_errors.h>
|
|
|
|
#include "struct.h"
|
|
#include "prettyprint_errors.h"
|
|
|
|
struct stringtree* expression_statement_prettyprint_errors(
|
|
struct statement* super)
|
|
{
|
|
ENTER;
|
|
|
|
struct expression_statement* this = (void*) super;
|
|
|
|
struct stringtree* tree = expression_prettyprint_errors(this->expression);
|
|
|
|
EXIT;
|
|
return tree;
|
|
}
|