()
| 677 | } |
| 678 | |
| 679 | function handleClear(): void { |
| 680 | stopStreaming(); |
| 681 | disposeChart(); |
| 682 | clearMetricsDisplay(); |
| 683 | state.totalPointsGenerated = 0; |
| 684 | |
| 685 | // Reset display to show input-based calculation |
| 686 | updateTotalPointsDisplay(); |
| 687 | |
| 688 | showStatus('Cleared', 'success'); |
| 689 | } |
| 690 | |
| 691 | function handleEmergencyStop(): void { |
| 692 | stopStreaming(); |
nothing calls this directly
no test coverage detected