5 writes to _latestSolution
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Workspace.cs (5)
86
_latestSolution
= CreateSolution(info, emptyOptions, analyzerReferences: [], fallbackAnalyzerOptions: ImmutableDictionary<string, StructuredAnalyzerConfigOptions>.Empty);
149
return Volatile.Read(ref
_latestSolution
);
186
_latestSolution
= solution.WithNewWorkspace(oldSolution.WorkspaceKind, oldSolution.WorkspaceVersion + 1, oldSolution.Services);
499
var oldSolution = Volatile.Read(ref
_latestSolution
);
532
_latestSolution
= newSolution;
3 references to _latestSolution
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Workspace.cs (3)
187
return (oldSolution,
_latestSolution
);
520
if (
_latestSolution
!= oldSolution)
523
oldSolution =
_latestSolution
;