From b28d6a8f02283ddef756a66f5f9c866d23aa146d Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Sun, 21 Apr 2024 07:12:59 +0200 Subject: [PATCH] commented out a test for a future new operator based on the caret symbol --- parser_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/parser_test.go b/parser_test.go index 0f4255d..8ab6d40 100644 --- a/parser_test.go +++ b/parser_test.go @@ -158,6 +158,7 @@ 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 */ //{`3^2`, int64(9), nil}, } check_env_expr_path := 113 @@ -165,7 +166,7 @@ func TestParser(t *testing.T) { failed := 0 // inputs1 := []inputType{ - // /* 140 */ {`isNil(nil)`, true, nil}, + // /* 140 */ {`3^2`, int64(9), nil}, // } for i, input := range inputs {