WipDebugger constructor

WipDebugger(
  1. WipConnection connection
)

Implementation

WipDebugger(WipConnection connection) : super(connection) {
  onScriptParsed.listen((event) {
    _scripts[event.script.scriptId] = event.script;
  });
  onGlobalObjectCleared.listen((_) {
    _scripts.clear();
  });
}