(id int64, key, value Expr, isOptional bool)
| 182 | } |
| 183 | |
| 184 | func (fac *baseExprFactory) NewMapEntry(id int64, key, value Expr, isOptional bool) EntryExpr { |
| 185 | return fac.newEntryExpr( |
| 186 | id, |
| 187 | &baseMapEntry{ |
| 188 | key: key, |
| 189 | value: value, |
| 190 | isOptional: isOptional, |
| 191 | }) |
| 192 | } |
| 193 | |
| 194 | func (fac *baseExprFactory) NewPresenceTest(id int64, operand Expr, field string) Expr { |
| 195 | return fac.newExpr( |
no test coverage detected