From d7f66d5a286a1da1240d5f255b7ae171c8b6a93f Mon Sep 17 00:00:00 2001 From: Mel Date: Thu, 10 Jul 2025 00:59:36 +0200 Subject: Fix nil-dereference in `parser_node_type_class` Signed-off-by: Mel --- boot/tree.c | 1 + 1 file changed, 1 insertion(+) (limited to 'boot/tree.c') diff --git a/boot/tree.c b/boot/tree.c index aab05eb..4320279 100644 --- a/boot/tree.c +++ b/boot/tree.c @@ -420,6 +420,7 @@ struct Function_Header_Node struct Type_Node* return_type; struct Span span; + struct Cursor location; }; // a declaration of a variable, constant, or other binding, without a mutability -- cgit 1.4.1