QualifyIfPresent is an implementation of the Qualifier interface method.
(vars Activation, obj any, presenceOnly bool)
| 1143 | |
| 1144 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 1145 | func (q *boolQualifier) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
| 1146 | return q.qualifyInternal(vars, obj, true, presenceOnly) |
| 1147 | } |
| 1148 | |
| 1149 | func (q *boolQualifier) qualifyInternal(vars Activation, obj any, presenceTest, presenceOnly bool) (any, bool, error) { |
| 1150 | b := q.value |
nothing calls this directly
no test coverage detected