()
| 442 | } |
| 443 | |
| 444 | onParsed() { |
| 445 | if (this.once) { |
| 446 | this.once = false; |
| 447 | |
| 448 | // Send <go/> BEFORE <set-all-breakpoints> to precisely match the xsbug GUI protocol initialization sequence. |
| 449 | // This addresses an unblocking state machine issue on certain targets (like ESP/Zephyr) when breakOnStart is active. |
| 450 | this.doGo(); |
| 451 | this.doSetAllBreakpoint(this.breakpoints, this.breakOnStart, this.exceptionsMode === 'on'); |
| 452 | this.running = true; |
| 453 | } |
| 454 | } |
| 455 | |
| 456 | onViewChanged(name, items) { |
| 457 | if (name === 'property') { |
no test coverage detected