11 lines
266 B
Python
11 lines
266 B
Python
|
|
class ScriptMgr:
|
|
|
|
def __init__(self, tab):
|
|
self.scripts = []
|
|
self.tab = tab
|
|
self.tab.set_listener('Debugger.scriptParsed', self.debuggerOnScriptParsed)
|
|
|
|
def debuggerOnScriptParsed(self, **kwargs):
|
|
self.scripts.append(kwargs)
|