MCPcopy Create free account
hub / github.com/scottrogowski/code2flow / namespace_ownership

Method namespace_ownership

code2flow/model.py:330–340  ·  view source on GitHub ↗

Get the ownership excluding namespace :rtype: str

(self)

Source from the content-addressed store, hash-verified

328 return self.token
329
330 def namespace_ownership(self):
331 """
332 Get the ownership excluding namespace
333 :rtype: str
334 """
335 parent = self.parent
336 ret = []
337 while parent and parent.group_type == GROUP_TYPE.CLASS:
338 ret = [parent.token] + ret
339 parent = parent.parent
340 return djoin(ret)
341
342 def label(self):
343 """

Callers 1

matches_variableMethod · 0.80

Calls 1

djoinFunction · 0.85

Tested by

no test coverage detected