diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-09-30 13:55:55 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-09-30 13:55:55 -0400 |
| commit | ec0606091bdcc8a8473ba909fb8ca2d873ce4a59 (patch) | |
| tree | 4b490161bf0a0b91e24c7af6bb1e84d439dd5951 /ast.h | |
| parent | 45425b77e40da59552cc800313aa80aac88430d4 (diff) | |
Add datetime literal and tests
Diffstat (limited to 'ast.h')
| -rw-r--r-- | ast.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -142,6 +142,7 @@ typedef enum { Extern, StructDef, EnumDef, LangDef, Index, FieldAccess, Optional, NonOptional, + DateTime, DocTest, Use, InlineCCode, @@ -306,6 +307,9 @@ struct ast_s { ast_t *value; } Optional, NonOptional; struct { + DateTime_t dt; + } DateTime; + struct { ast_t *expr; const char *output; bool skip_source:1; |
