diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-17 22:22:46 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-17 22:22:46 -0400 |
| commit | 5109fad68b801a5e89da69976a1a8a4d819d1689 (patch) | |
| tree | b87e32b769c17372b82080f314a7082c330fdabe /types.h | |
| parent | ca62aa365faee27895f8cb1eccddd7af8a7d15c9 (diff) | |
Fully rename array to list
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ #include <stdlib.h> #include "ast.h" -#include "stdlib/arrays.h" +#include "stdlib/lists.h" typedef struct type_s type_t; @@ -50,7 +50,7 @@ struct type_s { CStringType, MomentType, TextType, - ArrayType, + ListType, SetType, TableType, FunctionType, @@ -85,7 +85,7 @@ struct type_s { } TextType; struct { type_t *item_type; - } ArrayType; + } ListType; struct { type_t *item_type; } SetType; |
