Qualify is an implementation of the Qualifier interface method.
(vars Activation, obj any)
| 603 | |
| 604 | // Qualify is an implementation of the Qualifier interface method. |
| 605 | func (a *relativeAttribute) Qualify(vars Activation, obj any) (any, error) { |
| 606 | return attrQualify(a.fac, vars, obj, a) |
| 607 | } |
| 608 | |
| 609 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 610 | func (a *relativeAttribute) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
nothing calls this directly
no test coverage detected