lambda-calc-1/statement/error/inheritance.c
2025-01-20 13:40:51 -06:00

21 lines
436 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 error_statement_inheritance = {
.prettyprint_errors = error_statement_prettyprint_errors,
.prettyprint = error_statement_prettyprint,
.execute = error_statement_execute,
.free = free_error_statement,
};