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

Method disassembly_text

python/basicblock.py:505–514  ·  view source on GitHub ↗

``disassembly_text`` property which returns a list of function.DisassemblyTextLine objects for the current basic block. :Example: >>> current_basic_block.disassembly_text [<0x100000f30: _main:>, ...]

(self)

Source from the content-addressed store, hash-verified

503
504 @property
505 def disassembly_text(self) -> List['_function.DisassemblyTextLine']:
506 """
507 ``disassembly_text`` property which returns a list of function.DisassemblyTextLine objects for the current basic block.
508
509 :Example:
510
511 >>> current_basic_block.disassembly_text
512 [<0x100000f30: _main:>, ...]
513 """
514 return self.get_disassembly_text()
515
516 @property
517 def highlight(self) -> '_highlight.HighlightColor':

Callers

nothing calls this directly

Calls 1

get_disassembly_textMethod · 0.95

Tested by

no test coverage detected