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 assignment_statement_inheritance = {
|
|
.prettyprint_errors = assignment_statement_prettyprint_errors,
|
|
|
|
.prettyprint = assignment_statement_prettyprint,
|
|
|
|
.execute = assignment_statement_execute,
|
|
|
|
.free = free_assignment_statement,
|
|
};
|