Qualify implements the Qualifier interface method.
(vars Activation, obj any)
| 1250 | |
| 1251 | // Qualify implements the Qualifier interface method. |
| 1252 | func (q *doubleQualifier) Qualify(vars Activation, obj any) (any, error) { |
| 1253 | val, _, err := q.qualifyInternal(vars, obj, false, false) |
| 1254 | return val, err |
| 1255 | } |
| 1256 | |
| 1257 | func (q *doubleQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
| 1258 | return q.qualifyInternal(vars, obj, true, presenceOnly) |
nothing calls this directly
no test coverage detected