Files
c2/v0/ast.h
T
seeseemelk ea55dedd07 Refactor AST and Parser into modular subdirectories
- Split ast.h into granular headers in v0/ast/
- Split parser.c into modular implementation files in v0/parser/
- Move and rename parser tests to v0/parser/test_*.c
- Update build system (include.mk) with modular sub-makefiles
- Maintain v0/ast.h and v0/parser.h as umbrella headers
2026-04-30 21:23:07 +02:00

12 lines
149 B
C

/**
* Holds the AST model
*/
#ifndef AST_H
#define AST_H
#include "ast/expression.h"
#include "ast/declaration.h"
#include "ast/module.h"
#endif