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

Method tokens

python/highlevelil.py:394–398  ·  view source on GitHub ↗

HLIL tokens taken from the HLIL text lines (read-only) -- does not include newlines or indentation, use lines for that information

(self)

Source from the content-addressed store, hash-verified

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:

Callers

nothing calls this directly

Calls 3

get_linesMethod · 0.95
default_settingsMethod · 0.80
set_optionMethod · 0.45

Tested by

no test coverage detected