Added more tests

This commit is contained in:
2024-06-28 23:13:55 +02:00
parent 445556b64d
commit 5f2ff5e74e
5 changed files with 73 additions and 30 deletions

View File

@ -109,14 +109,10 @@ func (expr *Expression) write(builder *strings.Builder) {
builder.WriteByte('(')
builder.WriteString(expr.Token.Text())
builder.WriteByte(' ')
for i, child := range expr.Children {
for _, child := range expr.Children {
builder.WriteByte(' ')
child.write(builder)
if i != len(expr.Children)-1 {
builder.WriteByte(' ')
}
}
builder.WriteByte(')')