A generator of all data variables provided by DebugInfoParsers
(self)
| 389 | |
| 390 | @property |
| 391 | def data_variables(self) -> Iterator['binaryview.DataVariableAndName']: |
| 392 | """A generator of all data variables provided by DebugInfoParsers""" |
| 393 | return self.data_variables_from_parser() |
| 394 | |
| 395 | def get_type_by_name(self, parser_name: str, name: str) -> Optional[_types.Type]: |
| 396 | result = core.BNGetDebugTypeByName(self.handle, parser_name, name) |
no test coverage detected