commented out a test for a future new operator based on the caret symbol

This commit is contained in:
Celestino Amoroso 2024-04-21 07:12:59 +02:00
parent ab82bcf1ef
commit b28d6a8f02

View File

@ -158,6 +158,7 @@ func TestParser(t *testing.T) {
/* 137 */ {`2 + 1 ? {"a"} : {"b"} * 3`, "2bbb", nil}, /* 137 */ {`2 + 1 ? {"a"} : {"b"} * 3`, "2bbb", nil},
/* 138 */ {`nil`, nil, nil}, /* 138 */ {`nil`, nil, nil},
/* 139 */ {`null`, nil, errors.New(`undefined variable "null"`)}, /* 139 */ {`null`, nil, errors.New(`undefined variable "null"`)},
/* 140 */ //{`3^2`, int64(9), nil},
} }
check_env_expr_path := 113 check_env_expr_path := 113
@ -165,7 +166,7 @@ func TestParser(t *testing.T) {
failed := 0 failed := 0
// inputs1 := []inputType{ // inputs1 := []inputType{
// /* 140 */ {`isNil(nil)`, true, nil}, // /* 140 */ {`3^2`, int64(9), nil},
// } // }
for i, input := range inputs { for i, input := range inputs {