/* * 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 */