Qualify implements the Qualifier interface method.
(vars Activation, obj any)
| 939 | |
| 940 | // Qualify implements the Qualifier interface method. |
| 941 | func (q *intQualifier) Qualify(vars Activation, obj any) (any, error) { |
| 942 | val, _, err := q.qualifyInternal(vars, obj, false, false) |
| 943 | return val, err |
| 944 | } |
| 945 | |
| 946 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 947 | func (q *intQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
nothing calls this directly
no test coverage detected