aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index a0d26d0..863d9d1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -26,6 +26,7 @@ process_source(const StringView *source, const char *file_name) {
26 // Read tokens. 26 // Read tokens.
27 Token *tokens = tokenize(source); 27 Token *tokens = tokenize(source);
28 check_errors(file_name); 28 check_errors(file_name);
29 // print_tokens(tokens);
29 30
30 // Parser. 31 // Parser.
31 ParseTree *parse_tree = parse(tokens); 32 ParseTree *parse_tree = parse(tokens);