#include #include "../inheritance.h" #include "prettyprint_errors.h" #include "prettyprint.h" #include "evaluate.h" #include "free.h" #include "inheritance.h" struct expression_inheritance error_expression_inheritance = { .prettyprint_errors = error_expression_prettyprint_errors, .prettyprint = error_expression_prettyprint, .evaluate = error_expression_evaluate, .free = free_error_expression };