Token which includes what group this is a part of :rtype: str
(self)
| 319 | and self.parent.group_type in (GROUP_TYPE.CLASS, GROUP_TYPE.NAMESPACE)) |
| 320 | |
| 321 | def token_with_ownership(self): |
| 322 | """ |
| 323 | Token which includes what group this is a part of |
| 324 | :rtype: str |
| 325 | """ |
| 326 | if self.is_attr(): |
| 327 | return djoin(self.parent.token, self.token) |
| 328 | return self.token |
| 329 | |
| 330 | def namespace_ownership(self): |
| 331 | """ |
no test coverage detected