new convert function int()

This commit is contained in:
2024-04-20 07:29:42 +02:00
parent 943ef3327e
commit f198ba47e1
4 changed files with 128 additions and 5 deletions
-3
View File
@@ -158,9 +158,6 @@ func TestParser(t *testing.T) {
/* 137 */ {`2 + 1 ? {"a"} : {"b"} * 3`, "2bbb", nil},
/* 138 */ {`nil`, nil, nil},
/* 139 */ {`null`, nil, errors.New(`undefined variable "null"`)},
/* 140 */ {`isNil(nil)`, true, nil},
/* 141 */ {`v=nil; isNil(v)`, true, nil},
/* 142 */ {`v=5; isNil(v)`, false, nil},
}
check_env_expr_path := 113