xref: /llvm-project/lldb/test/Shell/Commands/Inputs/stop_hook.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1import lldb
2
3
4class stop_handler:
5    def __init__(self, target, extra_args, dict):
6        self.extra_args = extra_args
7        self.target = target
8
9    def handle_stop(self, exe_ctx, stream):
10        stream.Print("I did indeed run\n")
11        return True
12