| 1627 | } |
| 1628 | |
| 1629 | void LSPClientServer::refreshCodeLens() { |
| 1630 | Lock l( mClientsMutex ); |
| 1631 | for ( const auto& client : mClients ) |
| 1632 | client.second->requestCodeLens(); |
| 1633 | } |
| 1634 | |
| 1635 | bool LSPClientServer::isSilent() const { |
| 1636 | return mManager->getPlugin()->isSilent(); |
nothing calls this directly
no test coverage detected