From a7b2cec4719ed5b42889aafac20a25f1820ab78b Mon Sep 17 00:00:00 2001 From: Johnny Richard Date: Sun, 30 Apr 2023 02:00:39 +0200 Subject: ast: Rename variable and variable_declaration correctly Signed-off-by: Johnny Richard --- src/ast.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ast.h') diff --git a/src/ast.h b/src/ast.h index 4fd1d1d..2bd700e 100644 --- a/src/ast.h +++ b/src/ast.h @@ -105,9 +105,9 @@ typedef union ast_function_declaration_t function; ast_literal_t literal; ast_return_stmt_t return_stmt; - ast_variable_declaration_t variable; // FIXME: Rename to variable_declaration + ast_variable_declaration_t variable_declaration; ast_identifier_t identifier; - ast_variable_t variable_ex; // FIXME: Rename to variable + ast_variable_t variable; } ast_node_data_t; typedef struct ast_node_t -- cgit v1.2.3