8 references to _options
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (8)
OptionsCollection.cs (8)
35
public int Count =>
_options
.Count;
41
_options
.Add(optionKey, value);
45
=>
_options
[new OptionKey2(option)] = value;
75
_options
.Add(key, value);
79
=>
_options
.GetEnumerator();
86
=> new TestOptionSet(
_options
.ToImmutableDictionary(entry => new OptionKey(entry.Key.Option, entry.Key.Language), entry => entry.Value));
90
foreach (var (optionKey, value) in
_options
)
127
if (
_options
.TryGetValue(optionKey, out var objValue))