8 references to _options
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (8)
OptionsCollection.cs (8)
34
public int Count =>
_options
.Count;
40
_options
.Add(optionKey, value);
44
=>
_options
[new OptionKey2(option)] = value;
74
_options
.Add(key, value);
78
=>
_options
.GetEnumerator();
85
=> new TestOptionSet(
_options
.ToImmutableDictionary(entry => new OptionKey(entry.Key.Option, entry.Key.Language), entry => entry.Value));
89
foreach (var (optionKey, value) in
_options
)
98
if (
_options
.TryGetValue(optionKey, out var objValue))