HLIL tokens taken from the HLIL text lines (read-only) -- does not include newlines or indentation, use lines for that information
(self)
| 392 | |
| 393 | @property |
| 394 | def tokens(self) -> TokenList: |
| 395 | """HLIL tokens taken from the HLIL text lines (read-only) -- does not include newlines or indentation, use lines for that information""" |
| 396 | settings = function.DisassemblySettings.default_settings() |
| 397 | settings.set_option(DisassemblyOption.DisableLineFormatting) |
| 398 | return [token for line in self.get_lines(settings) for token in line.tokens] |
| 399 | |
| 400 | @property |
| 401 | def lines(self) -> LinesType: |
nothing calls this directly
no test coverage detected