For now, the old function still exists as `old_rp`, in order to debug issues with this command.
9 lines
304 B
Python
9 lines
304 B
Python
class LLDBInterface:
|
|
def build_environment(self, debugger):
|
|
self.debugger = debugger
|
|
self.target = debugger.GetSelectedTarget()
|
|
self.process = self.target.GetProcess()
|
|
self.thread = self.process.GetSelectedThread()
|
|
self.frame = self.thread.GetSelectedFrame()
|
|
|