diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-03 12:14:04 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-03 12:14:04 +0530 |
commit | 8226b60889654518074983f5fd8fc7389d8f5268 (patch) | |
tree | 6f8a751b224671cb2ebfc9143dde74b6586797b4 /include/lexer.h | |
parent | fb9b501e886bd2c27f1e6884fd4097d55bb19743 (diff) |
lexer: eachdo must also have a operand to hold the source
Diffstat (limited to 'include/lexer.h')
-rw-r--r-- | include/lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/lexer.h b/include/lexer.h index 611e014..ae64759 100644 --- a/include/lexer.h +++ b/include/lexer.h @@ -54,6 +54,7 @@ typedef struct { } contentfor_operand_t; typedef struct { + char *source; char *key; char *content; size_t length; |