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