Reduced token size

This commit is contained in:
2024-07-20 23:33:07 +02:00
parent 43cdac5572
commit ca36d34cb9
4 changed files with 21 additions and 17 deletions

View File

@ -10,13 +10,13 @@ import (
// This makes parsing easier and allows us to do better syntax checks.
type Token struct {
Bytes []byte
Position int
Position Position
Kind Kind
}
// End returns the position after the token.
func (t *Token) End() int {
return t.Position + len(t.Bytes)
func (t *Token) End() Position {
return t.Position + Position(len(t.Bytes))
}
// String creates a human readable representation for debugging purposes.