6 references to TextDocumentCodeLensName
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\CodeLens\CodeLensHandler.cs (1)
24
[Method(LSP.Methods.
TextDocumentCodeLensName
)]
Protocol\Methods.Document.cs (1)
42
public static readonly LspRequest<CodeLensParams, CodeLens[]?> TextDocumentCodeLens = new(
TextDocumentCodeLensName
);
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
CodeLens\AbstractCodeLensTests.cs (3)
30
var actualCodeLenses = await testLspServer.ExecuteRequestAsync<LSP.CodeLensParams, LSP.CodeLens[]?>(LSP.Methods.
TextDocumentCodeLensName
, codeLensParams, CancellationToken.None);
65
var actualCodeLenses = await testLspServer.ExecuteRequestAsync<LSP.CodeLensParams, LSP.CodeLens[]?>(LSP.Methods.
TextDocumentCodeLensName
, codeLensParams, CancellationToken.None);
88
var actualCodeLenses = await testLspServer.ExecuteRequestAsync<LSP.CodeLensParams, LSP.CodeLens[]?>(LSP.Methods.
TextDocumentCodeLensName
, codeLensParams, CancellationToken.None);
CodeLens\CSharpCodeLensTests.cs (1)
436
var actualCodeLenses = await testLspServer.ExecuteRequestAsync<LSP.CodeLensParams, LSP.CodeLens[]?>(LSP.Methods.
TextDocumentCodeLensName
, codeLensParamsDoc1, CancellationToken.None);