diff options
Diffstat (limited to 'src/parse/containers.h')
| -rw-r--r-- | src/parse/containers.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/parse/containers.h b/src/parse/containers.h new file mode 100644 index 00000000..6bf75274 --- /dev/null +++ b/src/parse/containers.h @@ -0,0 +1,9 @@ +// Logic for parsing container types (lists, sets, tables) +#pragma once + +#include "../ast.h" +#include "context.h" + +ast_t *parse_list(parse_ctx_t *ctx, const char *pos); +ast_t *parse_set(parse_ctx_t *ctx, const char *pos); +ast_t *parse_table(parse_ctx_t *ctx, const char *pos); |
