From b0b23acf887bec28b5ef8d0dfe448c4228ee0eb3 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 11 Sep 2024 13:55:41 -0400 Subject: Rename "Nil"->"Null" for consistency --- ast.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ast.h') diff --git a/ast.h b/ast.h index 02522a3e..e3108cae 100644 --- a/ast.h +++ b/ast.h @@ -106,7 +106,7 @@ struct type_ast_s { typedef enum { Unknown = 0, - Nil, Bool, Var, + Null, Bool, Var, Int, Num, TextLiteral, TextJoin, PrintStatement, Declare, Assign, @@ -139,7 +139,7 @@ struct ast_s { struct {} Unknown; struct { type_ast_t *type; - } Nil; + } Null; struct { bool b; } Bool; -- cgit v1.2.3