exitServer method
Exits the LSP server process.
Sends an 'exit' notification to the LSP server. This should be called after shutdown.
Implementation
Future<void> exitServer() async {
await _sendNotification(method: 'exit', params: {});
}
Exits the LSP server process.
Sends an 'exit' notification to the LSP server. This should be called after shutdown.
Future<void> exitServer() async {
await _sendNotification(method: 'exit', params: {});
}