Added token tests

This commit is contained in:
2024-06-06 21:35:14 +02:00
parent 42a212a3f4
commit e93b797dc6
7 changed files with 241 additions and 75 deletions

View File

@ -1,16 +1,24 @@
package token
import "strings"
import (
"bytes"
)
// List is a slice of tokens.
type List []Token
// String implements string serialization.
func (list List) String() string {
builder := strings.Builder{}
builder := bytes.Buffer{}
var last Token
for _, t := range list {
builder.WriteString(t.String())
if t.Kind == Identifier && last.Kind == Separator {
builder.WriteByte(' ')
}
builder.Write(t.Bytes)
last = t
}
return builder.String()