diff --git a/src/main.c b/src/main.c index 5aa3dba..487edd4 100644 --- a/src/main.c +++ b/src/main.c @@ -31,6 +31,15 @@ int main(int argc, char *argv[]) { return 1; } +#ifdef PROCESS_DEBUG + + printf("Parsed: \n"); + printtree(code, 0); + process(code, NULL); + printf("\nProcessed: \n"); + printtree(code, 0); + +#else process(code, NULL); char* compiled = compile(code); @@ -39,6 +48,8 @@ int main(int argc, char *argv[]) { free(compiled); compiled = NULL; +#endif + se_free(code); code = NULL;