#include #include #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; }