Improved function names

This commit is contained in:
2024-06-25 23:37:14 +02:00
parent e6462266ef
commit e69d695f6b
19 changed files with 94 additions and 114 deletions

View File

@ -71,28 +71,6 @@ func (expr *Expression) EachLeaf(call func(*Expression) error) error {
return nil
}
// EachOperation iterates through all the operations in the tree.
func (expr *Expression) EachOperation(call func(*Expression) error) error {
if expr.IsLeaf() {
return nil
}
// Don't descend into the parameters of function calls
if expr.Token.Text() == "λ" {
return call(expr)
}
for _, child := range expr.Children {
err := child.EachOperation(call)
if err != nil {
return err
}
}
return call(expr)
}
// RemoveChild removes a child from the expression.
func (expr *Expression) RemoveChild(child *Expression) {
for i, c := range expr.Children {