This commit is contained in:
2026-04-29 19:23:59 +02:00
parent 323a599399
commit cc25563cd2
2 changed files with 13 additions and 7 deletions
+3 -3
View File
@@ -11,7 +11,7 @@
typedef struct {
/** @brief The name of the module being imported. */
const char* module_name;
char* module_name;
/** @brief Whether the import is public or not. */
bool is_public;
@@ -53,7 +53,7 @@ struct TypeExpression{
*/
typedef struct {
/** @brief The name of the alias. */
const char* name;
char* name;
/** @brief The value of the alias. */
TypeExpression value;
@@ -68,7 +68,7 @@ typedef struct {
*/
typedef struct {
/** @brief The name of the module. */
const char* name;
char* name;
/** @brief The list of imports in the module. */
ImportDeclaration* imports;