blob: 4ea23380c5cc627d7995ec8c38eabc61114493a4 (
plain)
1
2
3
4
5
6
7
8
|
// 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_table(parse_ctx_t *ctx, const char *pos);
|