/** The "scriptCollected" event processor. */
private final ScriptCollectedProcessor scriptCollectedProcessor;
public DefaultResponseHandler(DebugSession debugSession) {
this.bpp = new BreakpointProcessor(debugSession);
this.afterCompileProcessor = new AfterCompileProcessor(debugSession);
this.scriptCollectedProcessor = new ScriptCollectedProcessor(debugSession);
}