Qualify is an implementation of the Qualifier interface method.
(vars Activation, obj any)
| 387 | |
| 388 | // Qualify is an implementation of the Qualifier interface method. |
| 389 | func (m *attributeMatcher) Qualify(vars Activation, obj any) (any, error) { |
| 390 | return attrQualify(m.fac, vars, obj, m) |
| 391 | } |
| 392 | |
| 393 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 394 | func (m *attributeMatcher) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
nothing calls this directly
no test coverage detected