diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-23 18:20:25 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-23 18:20:25 +0000 |
| commit | a7eb36e4ac1eb437f99e2b1d8d8aab93f0767fc1 (patch) | |
| tree | b7f94a6dd13813b6633db9ff875be3462ecea300 /src/ast | |
| parent | d7b24c552305f1bd8c49e253d14dcf4b1581df2c (diff) | |
Fix for #93
Diffstat (limited to 'src/ast')
| -rw-r--r-- | src/ast/ast.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ast/ast.h b/src/ast/ast.h index 523c1fb..6ef5d7a 100644 --- a/src/ast/ast.h +++ b/src/ast/ast.h @@ -160,8 +160,9 @@ struct ASTNode struct { char *name; - char *args; // Legacy string args. - char *ret_type; // Legacy string return type. + char *generic_params; // <T, U> + char *args; // Legacy string args. + char *ret_type; // Legacy string return type. ASTNode *body; Type **arg_types; char **defaults; |
