tools/scripts/cdb/scriptmgr.py
2019-10-12 11:10:40 +08:00

10 lines
226 B
Python

class ScriptMgr:
def __init__(self, tab):
self.tab = tab
self.tab.set_listener('Debugger.scriptParsed', self.debuggerOnScriptParsed)
def debuggerOnScriptParsed(self, **kwargs):
print(kwargs)