Improved file structure

This commit is contained in:
2024-06-05 15:51:05 +02:00
parent 453b4d8956
commit 42a212a3f4
18 changed files with 106 additions and 378 deletions

View File

@ -1,7 +1,5 @@
package token
import "git.akyoto.dev/cli/q/src/keywords"
// Pre-allocate these byte buffers so we can re-use them
// instead of allocating a new buffer every time.
var (
@ -87,7 +85,7 @@ func Tokenize(buffer []byte) List {
buffer[position:i],
}
if keywords.All[string(token.Bytes)] {
if Keywords[string(token.Bytes)] {
token.Kind = Keyword
}