Fixed a special case in the expression parser

This commit is contained in:
2025-02-17 10:42:44 +01:00
parent 9574a26da7
commit 3fb6061c30
2 changed files with 6 additions and 1 deletions

View File

@ -63,6 +63,10 @@ func isComplete(expr *Expression) bool {
return true
}
if expr.Token.Kind == token.Call {
return true
}
if expr.Token.IsOperator() && len(expr.Children) == numOperands(expr.Token.Kind) {
return true
}