5 writes to _latestSolution
Microsoft.CodeAnalysis.Workspaces (5)
Workspace\Workspace.cs (5)
89
_latestSolution
= CreateSolution(info, emptyOptions, analyzerReferences: SpecializedCollections.EmptyReadOnlyList<AnalyzerReference>());
144
return Volatile.Read(ref
_latestSolution
);
181
_latestSolution
= solution.WithNewWorkspace(oldSolution.WorkspaceKind, oldSolution.WorkspaceVersion + 1, oldSolution.Services);
344
var oldSolution = Volatile.Read(ref
_latestSolution
);
374
_latestSolution
= newSolution;
3 references to _latestSolution
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\Workspace.cs (3)
182
return (oldSolution,
_latestSolution
);
362
if (
_latestSolution
!= oldSolution)
365
oldSolution =
_latestSolution
;