bolt/deps/llvm-18.1.8/lldb/test/Shell/Commands/Inputs/stop_hook.py

12 lines
258 B
Python
Raw Normal View History

2025-02-14 19:21:04 +01:00
import lldb
class stop_handler:
def __init__(self, target, extra_args, dict):
self.extra_args = extra_args
self.target = target
def handle_stop(self, exe_ctx, stream):
stream.Print("I did indeed run\n")
return True