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

Method previous

python/lineardisassembly.py:204–210  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

202
203 @property
204 def previous(self):
205 if self._parent is None:
206 return None
207 result = core.BNGetPreviousLinearViewObjectChild(self._parent.handle, self.handle)
208 if not result:
209 return None
210 return LinearViewObject(result, self._parent)
211
212 @property
213 def next(self):

Calls 1

LinearViewObjectClass · 0.70

Tested by

no test coverage detected