#include #include "../inheritance.h" #include "prettyprint_errors.h" #include "prettyprint.h" #include "evaluate.h" #include "free.h" #include "inheritance.h" struct expression_inheritance lambda_expression_inheritance = { .prettyprint_errors = lambda_expression_prettyprint_errors, .prettyprint = lambda_expression_prettyprint, .evaluate = lambda_expression_evaluate, .free = free_lambda_expression };