(instance: PythonScriptingInstance)
| 1405 | |
| 1406 | |
| 1407 | def _get_current_raw_offset(instance: PythonScriptingInstance): |
| 1408 | if instance.interpreter.active_view is not None: |
| 1409 | return instance.interpreter.active_view.get_data_offset_for_address(instance.interpreter.active_addr) |
| 1410 | else: |
| 1411 | return None |
| 1412 | |
| 1413 | |
| 1414 | def _set_current_raw_offset(instance: PythonScriptingInstance, old_value: Any, new_value: Any): |
nothing calls this directly
no test coverage detected