2 writes to _lspSolution
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Handler\RequestContext.cs (2)
185
_lspSolution
= new StrongBox<(Workspace Workspace, Solution Solution, TextDocument? Document)>((workspace, solution, document));
191
_lspSolution
= null;
9 references to _lspSolution
Microsoft.CodeAnalysis.LanguageServer.Protocol (9)
Handler\RequestContext.cs (9)
66
if (
_lspSolution
is null)
74
return
_lspSolution
.Value.Workspace ?? throw new InvalidOperationException();
85
if (
_lspSolution
is null)
93
return
_lspSolution
.Value.Solution ?? throw new InvalidOperationException();
128
if (
_lspSolution
is null)
137
if (
_lspSolution
.Value.Workspace is null)
142
return
_lspSolution
.Value.Document;
356
if (
_lspSolution
is null)
359
_lspSolution
.Value = default;