21 lines
461 B
C
21 lines
461 B
C
|
|
#include <debug.h>
|
|
|
|
#include "../inheritance.h"
|
|
|
|
#include "inheritance.h"
|
|
|
|
#include "prettyprint.h"
|
|
#include "prettyprint_errors.h"
|
|
#include "execute.h"
|
|
#include "free.h"
|
|
|
|
struct statement_inheritance expression_statement_inheritance = {
|
|
.prettyprint_errors = expression_statement_prettyprint_errors,
|
|
|
|
.prettyprint = expression_statement_prettyprint,
|
|
|
|
.execute = expression_statement_execute,
|
|
|
|
.free = free_expression_statement,
|
|
};
|