From 317b8f53193e5ec14c92e229c89bc84ca32b7810 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 15 Feb 2024 13:43:46 -0500 Subject: Progress towards environments --- types.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'types.h') diff --git a/types.h b/types.h index f71f8883..fa0c7bff 100644 --- a/types.h +++ b/types.h @@ -37,6 +37,7 @@ struct type_s { BoolType, IntType, NumType, + StringType, ArrayType, TableType, FunctionType, @@ -56,6 +57,9 @@ struct type_s { struct { int64_t bits; } NumType; + struct { + const char *dsl; + } StringType; struct { type_t *item_type; } ArrayType; -- cgit v1.2.3