2 writes to _lspSolution
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\RequestContext.cs (2)
187
_lspSolution
= new StrongBox<(Workspace Workspace, Solution Solution, TextDocument? Document)>((workspace, solution, document));
193
_lspSolution
= null;
9 references to _lspSolution
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Handler\RequestContext.cs (9)
68
if (
_lspSolution
is null)
76
return
_lspSolution
.Value.Workspace ?? throw new InvalidOperationException();
87
if (
_lspSolution
is null)
95
return
_lspSolution
.Value.Solution ?? throw new InvalidOperationException();
130
if (
_lspSolution
is null)
139
if (
_lspSolution
.Value.Workspace is null)
144
return
_lspSolution
.Value.Document;
358
if (
_lspSolution
is null)
361
_lspSolution
.Value = default;