* Send all tracked messages to the conenction's window. * * @param connection The connection establised between client and server.
(connection: { window: RemoteWindow })
| 337 | * @param connection The connection establised between client and server. |
| 338 | */ |
| 339 | public sendErrors(connection: { window: RemoteWindow }): void { |
| 340 | Object.keys(this._messages).forEach(message => { |
| 341 | connection.window.showErrorMessage(message); |
| 342 | }); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | /** |
nothing calls this directly
no test coverage detected