13 references to BufferedProgress
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
141
using var progress =
BufferedProgress
.Create(diagnosticsParams.PartialResultToken);
Handler\References\FindAllReferencesHandler.cs (1)
58
using var progress =
BufferedProgress
.Create<SumType<VSInternalReferenceItem, LSP.Location>[]>(referenceParams.PartialResultToken);
Handler\SpellCheck\AbstractSpellCheckingHandler.cs (1)
70
using var progress =
BufferedProgress
.Create(requestParams.PartialResultToken);
Handler\Symbols\WorkspaceSymbolsHandler.cs (1)
60
using var progress =
BufferedProgress
.Create(request.PartialResultToken);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (8)
Diagnostics\AbstractPullDiagnosticTestsBase.cs (4)
84
BufferedProgress<VSInternalWorkspaceDiagnosticReport[]>? progress = useProgress ?
BufferedProgress
.Create<VSInternalWorkspaceDiagnosticReport[]>(null) : null;
108
BufferedProgress<WorkspaceDiagnosticPartialReport>? progress = useProgress ?
BufferedProgress
.Create<WorkspaceDiagnosticPartialReport>(null) : null;
238
BufferedProgress<VSInternalDiagnosticReport[]>? progress = useProgress ?
BufferedProgress
.Create<VSInternalDiagnosticReport[]>(null) : null;
255
BufferedProgress<DocumentDiagnosticPartialReport>? progress = useProgress ?
BufferedProgress
.Create<DocumentDiagnosticPartialReport>(null) : null;
References\FindAllReferencesHandlerTests.cs (1)
88
using var progress =
BufferedProgress
.Create<object>(null);
SpellCheck\SpellCheckTests.cs (2)
562
?
BufferedProgress
.Create<VSInternalSpellCheckableRangeReport[]>(null) : null;
583
BufferedProgress<VSInternalWorkspaceSpellCheckableReport[]>? progress = useProgress ?
BufferedProgress
.Create<VSInternalWorkspaceSpellCheckableReport[]>(null) : null;
Symbols\WorkspaceSymbolsTests.cs (1)
64
using var progress =
BufferedProgress
.Create<LSP.SymbolInformation[]>(null);
Microsoft.VisualStudio.LanguageServices.Xaml (1)
Implementation\LanguageServer\Handler\Diagnostics\AbstractPullDiagnosticHandler.cs (1)
66
using var progress =
BufferedProgress
.Create(GetProgress(diagnosticsParams));