operator-iter-value.go: prefix operator () used to get the current value of an iterator replaced by ^

This commit is contained in:
Celestino Amoroso 2024-07-13 17:17:16 +02:00
parent 2a2840bdf2
commit 00fda29606

View File

@ -33,5 +33,6 @@ func evalIterValue(ctx ExprContext, opTerm *term) (v any, err error) {
// init
func init() {
registerTermConstructor(SymOpenClosedRound, newIterValueTerm)
// registerTermConstructor(SymOpenClosedRound, newIterValueTerm)
registerTermConstructor(SymCaret, newIterValueTerm)
}