Slide 31
Slide 31 text
Расширения LLDB Python extensions
Команды на Python
class CommandClass:
def __init__(self, dbg, session_dict):
print 'Command "AwesomeCommand" is ready for use!'
def __call__(self, dbg, args, exec_context, output):
doSomeMagic(args)
def Command(dbg, args, exec_context, output, session_dict):
doSomeMagic(args)