Implement UPPER/LOWER; minor Fixes

This commit is contained in:
Pijus Kamandulis
2024-02-24 20:00:47 +02:00
parent f37c664c1a
commit f356f26d26
12 changed files with 394 additions and 183 deletions

View File

@@ -89,6 +89,8 @@ const (
FunctionCallIndexOf FunctionCallType = "IndexOf"
FunctionCallToString FunctionCallType = "ToString"
FunctionCallIn FunctionCallType = "In"
FunctionCallUpper FunctionCallType = "Upper"
FunctionCallLower FunctionCallType = "Lower"
)
type FunctionCall struct {