| 4306 | } |
| 4307 | |
| 4308 | void TextDocument::notifyDocumentLoaded() { |
| 4309 | Lock l( mClientsMutex ); |
| 4310 | for ( auto& client : mClients ) { |
| 4311 | client->onDocumentLoaded( this ); |
| 4312 | } |
| 4313 | } |
| 4314 | |
| 4315 | void TextDocument::notifyDocumentReloaded() { |
| 4316 | Lock l( mClientsMutex ); |
nothing calls this directly
no test coverage detected