(session)
| 304 | this.sessionPromptScrollAnchors = new Map(); // Keeps prompt-slide anchors across session switches |
| 305 | this.scrollToBottomButton = null; // Reference to the floating scroll-to-bottom button |
| 306 | this.scrollButtonCheckInterval = null; // Interval for checking button visibility during streaming |
| 307 | this.scrubberService = scrubberService; |
| 308 | this.scrubberPending = null; |
| 309 | this.memoryApprovalRequests = new Map(); |
| 310 | this.memoryExtractionInFlight = new Set(); |
| 311 | this.memoryExtractionAbortControllers = new Map(); |
| 312 | this.memoryAugmentAbortControllers = new Set(); |
| 313 | this.memoryWorkGeneration = 0; |
| 314 | this.memoryApiOverrides = new Map(); |
| 315 | this.memoryApiOverrideRevision = 0; |
| 316 | this.parallelModeEnabled = false; |
| 317 | this.parallelSecondaryModel = null; |
no test coverage detected