Improved file structure
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user