brintos

brintos / llvm-project-archived public Read only

0
0
Text · 438 B · 8a78438 Raw
18 lines · python
1import lldb2import side_effect3 4 5class Resolver:6    """This resolver class is just so I can read out the extra_args."""7 8    def __init__(self, bkpt, extra_args, dict):9        self.bkpt = bkpt10        side_effect.g_extra_args = extra_args11 12    def __callback__(self, sym_ctx):13        """Doesn't actually do anything."""14        return15 16    def get_short_help(self):17        return "I am a python breakpoint resolver that does nothing"18