MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / parent

Method parent

python/component.py:162–169  ·  view source on GitHub ↗

The component that contains this component, if it exists.

(self)

Source from the content-addressed store, hash-verified

160
161 @property
162 def parent(self) -> Optional['Component']:
163 """
164 The component that contains this component, if it exists.
165 """
166 bn_component = core.BNComponentGetParent(self.handle)
167 if bn_component is not None:
168 return Component(bn_component)
169 return None
170
171 @property
172 def view(self):

Callers 2

default_local_cacheFunction · 0.45
core_signature_dirFunction · 0.45

Calls 1

ComponentClass · 0.70

Tested by

no test coverage detected