5 writes to _currentValues
Microsoft.CodeAnalysis.Workspaces (5)
Options\GlobalOptionService.cs (5)
81
return (T)GetOption_NoLock(ref
_currentValues
, optionKey, persisters)!;
111
values.Add(GetOption_NoLock(ref
_currentValues
, optionKey, persisters));
168
_currentValues
= currentValues;
209
_currentValues
= _currentValues.SetItem(optionKey, newValue);
250
_instance.
_currentValues
= ImmutableDictionary.Create<OptionKey2, object?>();
5 references to _currentValues
Microsoft.CodeAnalysis.Workspaces (5)
Options\GlobalOptionService.cs (5)
72
if (
_currentValues
.TryGetValue(optionKey, out var value))
91
var currentValues =
_currentValues
;
155
var currentValues =
_currentValues
;
200
if (
_currentValues
.TryGetValue(optionKey, out var oldValue))
209
_currentValues =
_currentValues
.SetItem(optionKey, newValue);