22 lines
414 B
C
22 lines
414 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../prettyprint_errors.h"
|
|
|
|
#include "struct.h"
|
|
#include "prettyprint_errors.h"
|
|
|
|
struct stringtree* parenthesis_expression_prettyprint_errors(
|
|
struct expression* super)
|
|
{
|
|
ENTER;
|
|
|
|
struct parenthesis_expression* const this = (void*) super;
|
|
|
|
struct stringtree* tree = expression_prettyprint_errors(
|
|
this->subexpression);
|
|
|
|
EXIT;
|
|
return tree;
|
|
}
|
|
|