feat: self-hosting progress - Nim backend, parser fixes, 64 struct fields, 13/14 modules check

This commit is contained in:
2026-06-01 23:42:25 +03:00
parent 1e8e119d9e
commit 2b911410cb
31 changed files with 2507 additions and 266 deletions
+9 -9
View File
@@ -40,16 +40,16 @@ const tyFunc: int = 28;
// ---------------------------------------------------------------------------
struct Type {
kind: int,
name: String,
kind: int;
name: String;
// inner types stored as array of pointers (simplified)
innerKind1: int,
innerName1: String,
innerKind2: int,
innerName2: String,
innerKind3: int,
innerName3: String,
innerCount: int,
innerKind1: int;
innerName1: String;
innerKind2: int;
innerName2: String;
innerKind3: int;
innerName3: String;
innerCount: int;
}
// ---------------------------------------------------------------------------