| 255 | } |
| 256 | |
| 257 | type absoluteAttribute struct { |
| 258 | id int64 |
| 259 | // namespaceNames represent the names the variable could have based on declared container |
| 260 | // (package) of the expression. |
| 261 | namespaceNames []string |
| 262 | // disambiguateNames indicates whether the namespaceNames require disambiguation with local variables. |
| 263 | disambiguateNames bool |
| 264 | |
| 265 | qualifiers []Qualifier |
| 266 | adapter types.Adapter |
| 267 | provider types.Provider |
| 268 | fac AttributeFactory |
| 269 | |
| 270 | errorOnBadPresenceTest bool |
| 271 | } |
| 272 | |
| 273 | // ID implements the Attribute interface method. |
| 274 | func (a *absoluteAttribute) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected