debbuging failure to read from builtin map

This commit is contained in:
Francesco Cozzuto
2021-11-03 15:22:59 +01:00
parent d4e9eb23d3
commit 0157d28f67
16 changed files with 266 additions and 29 deletions
+7
View File
@@ -33,6 +33,7 @@ typedef enum {
EXPR_ASS,
EXPR_INT,
EXPR_CALL,
EXPR_LIST,
EXPR_NONE,
EXPR_TRUE,
EXPR_FALSE,
@@ -78,6 +79,12 @@ typedef struct {
int len;
} StringExprNode;
typedef struct {
ExprNode base;
Node *items;
int itemc;
} ListExprNode;
typedef struct {
ExprNode base;
char *val;