Qualify implements the Qualifier interface method.
(vars Activation, obj any)
| 837 | |
| 838 | // Qualify implements the Qualifier interface method. |
| 839 | func (q *stringQualifier) Qualify(vars Activation, obj any) (any, error) { |
| 840 | val, _, err := q.qualifyInternal(vars, obj, false, false) |
| 841 | return val, err |
| 842 | } |
| 843 | |
| 844 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 845 | func (q *stringQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
nothing calls this directly
no test coverage detected