``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)
| 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': |
nothing calls this directly
no test coverage detected