Improved test coverage

This commit is contained in:
2024-06-26 15:24:10 +02:00
parent 68ec1467ef
commit 49b75dbda4
3 changed files with 60 additions and 15 deletions

View File

@ -26,15 +26,6 @@ func NewLeaf(t token.Token) *Expression {
return expr
}
// NewBinary creates a new binary operator expression.
func NewBinary(left *Expression, operator token.Token, right *Expression) *Expression {
expr := New()
expr.Token = operator
expr.AddChild(left)
expr.AddChild(right)
return expr
}
// AddChild adds a child to the expression.
func (expr *Expression) AddChild(child *Expression) {
expr.Children = append(expr.Children, child)