Qualify implements the Qualifier interface method.
(vars Activation, obj any)
| 1137 | |
| 1138 | // Qualify implements the Qualifier interface method. |
| 1139 | func (q *boolQualifier) Qualify(vars Activation, obj any) (any, error) { |
| 1140 | val, _, err := q.qualifyInternal(vars, obj, false, false) |
| 1141 | return val, err |
| 1142 | } |
| 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) { |
nothing calls this directly
no test coverage detected