Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Commit 82d1998

Browse files
author
Mikhail Arkhipov
authored
Merge pull request microsoft#169 from AlexanderSher/2018.9
RELEASE: Remove requeue of dependent modules
2 parents 901c2e3 + 7d56689 commit 82d1998

File tree

1 file changed

+0
-7
lines changed
  • src/LanguageServer/Impl/Implementation

1 file changed

+0
-7
lines changed

src/LanguageServer/Impl/Implementation/Server.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -650,13 +650,6 @@ private async Task OnDocumentChangeProcessingCompleteAsync(IDocument doc, Versio
650650
if (vc != null) {
651651
_editorFiles.GetDocument(doc.DocumentUri).UpdateParseDiagnostics(vc, doc.DocumentUri);
652652
}
653-
654-
if (doc is ProjectEntry entry) {
655-
var reanalyzeEntries = Analyzer.GetEntriesThatImportModule(entry.ModuleName, false);
656-
foreach (var d in reanalyzeEntries.OfType<IDocument>()) {
657-
await EnqueueItemAsync(d, parse: false);
658-
}
659-
}
660653
} catch (BadSourceException) {
661654
} catch (ObjectDisposedException) when (_disposableBag.IsDisposed) {
662655
} catch (OperationCanceledException ex) {

0 commit comments

Comments
 (0)