Implement parser module and update AST

This commit is contained in:
2026-04-24 14:50:54 +02:00
parent 2d1ccd52e6
commit a173e37adc
6 changed files with 78 additions and 48 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* Holds the AST model
*/
#ifndef AST_H
#define AST_H
/**
* The top-level model.
* Every file matches an entire Module.
*/
typedef struct {
/// @brief The name of the module.
char* name;
} Module;
#endif