From ca93e6f3cb78f65f8eb8aac0d6fae81be2c250e8 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 27 Sep 2024 14:56:24 -0400 Subject: Simplify code by making `name := use ...` a Use AST instead of a Declare --- ast.h | 1 + 1 file changed, 1 insertion(+) (limited to 'ast.h') diff --git a/ast.h b/ast.h index 2301100e..fbbdb702 100644 --- a/ast.h +++ b/ast.h @@ -311,6 +311,7 @@ struct ast_s { bool skip_source:1; } DocTest; struct { + ast_t *var; const char *path; enum { USE_LOCAL, USE_MODULE, USE_SHARED_OBJECT, USE_HEADER, USE_C_CODE, USE_ASM } what; } Use; -- cgit v1.2.3