2 instantiations of VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
LanguageServer\VSTypeScriptHandlerTests.cs (1)
49var documentPullRequest = new VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Diagnostics\AbstractPullDiagnosticTestsBase.cs (1)
196return new VSInternalDocumentDiagnosticsParams
9 references to VSInternalDocumentDiagnosticsParams
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
LanguageServer\VSTypeScriptHandlerTests.cs (2)
49var documentPullRequest = new VSInternalDocumentDiagnosticsParams 54var response = await testLspServer.ExecuteRequestAsync<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]>(VSInternalMethods.DocumentPullDiagnosticName, documentPullRequest, CancellationToken.None);
Microsoft.CodeAnalysis.LanguageServer.Protocol (5)
Handler\Diagnostics\DocumentPullDiagnosticHandler.cs (4)
18: AbstractDocumentPullDiagnosticHandler<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[], VSInternalDiagnosticReport[]>( 21protected override string? GetRequestDiagnosticCategory(VSInternalDocumentDiagnosticsParams diagnosticsParams) 24public override TextDocumentIdentifier? GetTextDocumentIdentifier(VSInternalDocumentDiagnosticsParams diagnosticsParams) 51protected override ImmutableArray<PreviousPullResult>? GetPreviousResults(VSInternalDocumentDiagnosticsParams diagnosticsParams)
Protocol\Internal\VSInternalMethods.cs (1)
42public static readonly LspRequest<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]> DocumentPullDiagnostic = new(DocumentPullDiagnosticName);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
Diagnostics\AbstractPullDiagnosticTestsBase.cs (2)
190private protected static VSInternalDocumentDiagnosticsParams CreateDocumentDiagnosticParams( 257var diagnostics = await testLspServer.ExecuteRequestAsync<VSInternalDocumentDiagnosticsParams, VSInternalDiagnosticReport[]>(