Reformats the given list of lines. Returns a new list of lines containing the reformatted code.
(
self, in_lines: List['function.DisassemblyTextLine'], settings: 'LineFormatterSettings'
)
| 208 | self.line_buf = None |
| 209 | |
| 210 | def format_lines( |
| 211 | self, in_lines: List['function.DisassemblyTextLine'], settings: 'LineFormatterSettings' |
| 212 | ) -> List['function.DisassemblyTextLine']: |
| 213 | """ |
| 214 | Reformats the given list of lines. Returns a new list of lines containing the reformatted code. |
| 215 | """ |
| 216 | raise NotImplementedError |
| 217 | |
| 218 | @property |
| 219 | def name(self) -> str: |