This commit is contained in:
nub31
2025-09-20 19:13:17 +02:00
parent def567ce4b
commit 68f0da8065
10 changed files with 592 additions and 618 deletions

View File

@@ -38,4 +38,6 @@ public record ModuleStruct(bool Exported, string Name, List<ModuleStructField> F
public record ModuleFunctionParameter(string Name, TypeSyntax Type);
public record ModuleFunction(bool Exported, string Name, string? ExternSymbol, List<ModuleFunctionParameter> Parameters, TypeSyntax ReturnType);
public record ModuleFunction(bool Exported, string Name, string? ExternSymbol, List<ModuleFunctionParameter> Parameters, TypeSyntax ReturnType);
public record ModuleTemplateStruct(bool Exported, string? Name);