Qualify is an implementation of the Qualifier interface method.
(vars Activation, obj any)
| 304 | |
| 305 | // Qualify is an implementation of the Qualifier interface method. |
| 306 | func (a *absoluteAttribute) Qualify(vars Activation, obj any) (any, error) { |
| 307 | return attrQualify(a.fac, vars, obj, a) |
| 308 | } |
| 309 | |
| 310 | // QualifyIfPresent is an implementation of the Qualifier interface method. |
| 311 | func (a *absoluteAttribute) QualifyIfPresent(vars Activation, obj any, presenceOnly bool) (any, bool, error) { |
nothing calls this directly
no test coverage detected