Cleaned up linter warnings

This commit is contained in:
2024-06-27 20:54:07 +02:00
parent a64169d624
commit 77cfe9ff31
6 changed files with 29 additions and 28 deletions

View File

@ -38,7 +38,7 @@ func Parse(tokens token.List) *Expression {
isFunctionCall := isComplete(cursor)
if isFunctionCall {
parameters := List(tokens[groupPosition:i])
parameters := NewList(tokens[groupPosition:i])
node := New()
node.Token.Kind = token.Operator