blob: 03be1bde7e1f20c847fbc6f20837bf09c7618558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* AST (Abstract Syntax Tree) definitions.
* Copyright (c) 2023-2024, Quinn Stephens and the OSMORA team.
* Provided under the BSD 3-Clause license.
*/
#ifndef _PARSER_AST_H
#define _PARSER_AST_H
enum ast_node_kind {
NK_UNKNOWN,
NK_
};
struct ast_node {
enum ast_node_kind kind;
};
#endif /* !_PARSER_AST_H */
|