()
| 253 | protected webview: SWOWebview = null; |
| 254 | |
| 255 | public debugSessionTerminated() { |
| 256 | if (this.webview) { |
| 257 | const message: GrapherStatusMessage = { type: 'status', status: 'terminated' }; |
| 258 | this.webview.sendMessage(message); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | public debugStopped() { |
| 263 | if (this.webview) { |
nothing calls this directly
no test coverage detected