diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-08-10 15:15:38 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-08-10 15:15:38 -0400 |
| commit | 8d3d5913129a8ede381462d5ad5e98f9c789e5c8 (patch) | |
| tree | 074e1fd4489710af0810e2a901106a7161467021 /types.h | |
| parent | cb6cebf12e2124503f0551bc1bf6b44f68d86746 (diff) | |
Add Sets to the language
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -48,6 +48,7 @@ struct type_s { CStringType, TextType, ArrayType, + SetType, TableType, FunctionType, ClosureType, @@ -79,6 +80,9 @@ struct type_s { type_t *item_type; } ArrayType; struct { + type_t *item_type; + } SetType; + struct { type_t *key_type, *value_type; } TableType; struct { |
