Implemented error messages

This commit is contained in:
2024-06-13 12:13:32 +02:00
parent 2d990b0bee
commit 9458253f31
16 changed files with 362 additions and 60 deletions

View File

@ -31,6 +31,7 @@ func Tokenize(buffer []byte) List {
for i < len(buffer) {
if buffer[i] == '"' {
end = i + 1
i++
break
}
@ -43,6 +44,8 @@ func Tokenize(buffer []byte) List {
buffer[start:end],
})
continue
// Parentheses start
case '(':
tokens = append(tokens, Token{GroupStart, i, groupStartBytes})
@ -121,6 +124,7 @@ func Tokenize(buffer []byte) List {
i++
}
tokens = append(tokens, Token{EOF, i, nil})
return tokens
}