blob: 1bdb92e630f4b07fb0d545a6a21134a564425bd5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Parsing logic for type definitions
#pragma once
#include "../ast.h"
#include "context.h"
ast_t *parse_lang_def(parse_ctx_t *ctx, const char *pos);
ast_t *parse_enum_def(parse_ctx_t *ctx, const char *pos);
ast_t *parse_struct_def(parse_ctx_t *ctx, const char *pos);
ast_t *parse_namespace(parse_ctx_t *ctx, const char *pos);
|