Skip to content
This repository was archived by the owner on Apr 14, 2022. It is now read-only.

RELEASE: Remove requeue of dependent modules #169

Merged
merged 1 commit into from
Sep 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/LanguageServer/Impl/Implementation/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -650,13 +650,6 @@ private async Task OnDocumentChangeProcessingCompleteAsync(IDocument doc, Versio
if (vc != null) {
_editorFiles.GetDocument(doc.DocumentUri).UpdateParseDiagnostics(vc, doc.DocumentUri);
}

if (doc is ProjectEntry entry) {
var reanalyzeEntries = Analyzer.GetEntriesThatImportModule(entry.ModuleName, false);
foreach (var d in reanalyzeEntries.OfType<IDocument>()) {
await EnqueueItemAsync(d, parse: false);
}
}
} catch (BadSourceException) {
} catch (ObjectDisposedException) when (_disposableBag.IsDisposed) {
} catch (OperationCanceledException ex) {
Expand Down