QualifyIfPresent is an implementation of the Qualifier interface method.
(vars Activation, obj any, presenceOnly bool)
| 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) { |
| 846 | return q.qualifyInternal(vars, obj, true, presenceOnly) |
| 847 | } |
| 848 | |
| 849 | func (q *stringQualifier) qualifyInternal(vars Activation, obj any, presenceTest, presenceOnly bool) (any, bool, error) { |
| 850 | s := q.value |
nothing calls this directly
no test coverage detected