replace leading _ for private symbols with keyword hide

This commit is contained in:
2026-07-14 20:19:01 +02:00
parent 5157cf3bcc
commit 267947e79d
31 changed files with 125220 additions and 122709 deletions
@@ -1,7 +1,10 @@
hide helper func() void {}
# <- keyword
main func() void {
_ = sizeof!(i32)
# ^^^^^^ function.builtin
# ^ operator
# ^ operator
_ = sizeof(i32)
# ^^^^^^ function
}