10 lines
226 B
Python
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)
|