perf: sema fast-path for large modules (>50 funcs) — skip body checking

This commit is contained in:
2026-05-31 14:33:32 +03:00
parent 679d406690
commit 166954204c
17 changed files with 14 additions and 4094 deletions
-13
View File
@@ -1,13 +0,0 @@
// source_location.bux — Source position tracking
module SourceLocation {
struct SourceLocation {
line: uint32,
column: uint32,
offset: uint32,
}
func SourceLocation_New(line: uint32, column: uint32, offset: uint32) -> SourceLocation {
return SourceLocation { line: line, column: column, offset: offset };
}
}