(vars Activation, obj any, presenceOnly bool)
| 1255 | } |
| 1256 | |
| 1257 | func (q *doubleQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
| 1258 | return q.qualifyInternal(vars, obj, true, presenceOnly) |
| 1259 | } |
| 1260 | |
| 1261 | func (q *doubleQualifier) qualifyInternal(vars Activation, obj any, presenceTest, presenceOnly bool) (any, bool, error) { |
| 1262 | return refQualify(q.adapter, obj, q.celValue, presenceTest, presenceOnly, q.errorOnBadPresenceTest) |
nothing calls this directly
no test coverage detected