Improved error handling

This commit is contained in:
2024-06-15 18:42:31 +02:00
parent 57f1da10fe
commit 4776b4c14c
7 changed files with 71 additions and 60 deletions

View File

@ -11,6 +11,11 @@ type Token struct {
Bytes []byte
}
// After returns the position after the token.
func (t Token) After() int {
return t.Position + len(t.Bytes)
}
// String creates a human readable representation for debugging purposes.
func (t Token) String() string {
return fmt.Sprintf("%s %s", t.Kind, t.Text())