(params: PublishDiagnosticsParams)
| 2740 | } |
| 2741 | |
| 2742 | private handleDiagnostics(params: PublishDiagnosticsParams) { |
| 2743 | if (!this._diagnostics) { |
| 2744 | return; |
| 2745 | } |
| 2746 | let uri = this._p2c.asUri(params.uri); |
| 2747 | let diagnostics = this._p2c.asDiagnostics(params.diagnostics); |
| 2748 | this._diagnostics.set(uri, diagnostics); |
| 2749 | } |
| 2750 | |
| 2751 | protected abstract createMessageTransports(encoding: string): Thenable<MessageTransports>; |
| 2752 |
nothing calls this directly
no test coverage detected