diff options
Diffstat (limited to 'src/ast.h')
-rw-r--r-- | src/ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |