From 8c8d65f026121b4d75a31bff8a91c3fbf969fca5 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 18 May 2025 19:43:19 +0200 Subject: Define basic syntax tree (mostly expressions), with simple debug printing Signed-off-by: Mel --- boot/lex.c | 1 + 1 file changed, 1 insertion(+) (limited to 'boot/lex.c') diff --git a/boot/lex.c b/boot/lex.c index db0173e..9a94c55 100644 --- a/boot/lex.c +++ b/boot/lex.c @@ -219,6 +219,7 @@ token_new(enum Token_Kind kind, struct Span span, struct Cursor location, union .kind = kind, .span = span, .value = value, + .location = location, }; } -- cgit 1.4.1