#include #include "../inheritance.h" #include "prettyprint_errors.h" #include "prettyprint.h" #include "evaluate.h" #include "free.h" #include "inheritance.h" struct expression_inheritance variable_expression_inheritance = { .prettyprint_errors = variable_expression_prettyprint_errors, .prettyprint = variable_expression_prettyprint, .evaluate = variable_expression_evaluate, .free = free_variable_expression };