1 // Logic for parsing container types (lists, sets, tables) 2 #pragma once 3 4 #include "../ast.h" 5 #include "context.h" 6 7 ast_t *parse_list(parse_ctx_t *ctx, const char *pos); 8 ast_t *parse_table(parse_ctx_t *ctx, const char *pos);