native test framework

This commit is contained in:
2026-07-17 22:36:17 +02:00
parent cedc63b28b
commit b09787029d
23 changed files with 141197 additions and 139688 deletions
+2 -1
View File
@@ -50,6 +50,7 @@ Kind :: enum u8 {
Right_Brace,
Comma,
Pipe,
Keyword_Test,
Keyword_Func,
Keyword_C_Func,
Keyword_Struct,
@@ -118,7 +119,7 @@ Kind :: enum u8 {
}
is_keyword :: proc(kind: Kind) -> bool {
return kind >= .Keyword_Func && kind <= .Keyword_C_Longdouble
return kind >= .Keyword_Test && kind <= .Keyword_C_Longdouble
}
Token :: struct {