Implemented struct parser

This commit is contained in:
2025-02-04 14:41:04 +01:00
parent fc1b970f7f
commit 51e3c1ba0e
19 changed files with 388 additions and 252 deletions

View File

@ -25,7 +25,7 @@ func TestFunction(t *testing.T) {
}
func TestKeyword(t *testing.T) {
tokens := token.Tokenize([]byte("assert if import else loop return switch"))
tokens := token.Tokenize([]byte("assert if import else loop return struct switch"))
expected := []token.Kind{
token.Assert,
@ -34,6 +34,7 @@ func TestKeyword(t *testing.T) {
token.Else,
token.Loop,
token.Return,
token.Struct,
token.Switch,
token.EOF,
}