#include /*#include */ /*#include */ #include #include #include #include "struct.h" #include "inheritance.h" #include "prettyprint.h" struct stringtree* lazy_value_prettyprint( int *out_chosen_color, struct value* super, bool with_color) { ENTER; struct lazy_value* this = (void*) super; struct stringtree* tree = expression_prettyprint( out_chosen_color, this->expression, with_color); /* stringtree_prepend_cstr(tree, L"lazy(");*/ /* stringtree_append_cstr(tree, L")");*/ EXIT; return tree; }