3 writes to _symbols
Test.Utilities (3)
SymbolNamesWithValueOption.cs (3)
66_symbols = symbols; 73_symbols = ImmutableDictionary<ISymbol, TValue>.Empty; 372internal ref readonly ImmutableDictionary<ISymbol, TValue> Symbols => ref _symbolNamesWithValueOption._symbols;
5 references to _symbols
Test.Utilities (5)
SymbolNamesWithValueOption.cs (5)
229=> _symbols.ContainsKey(symbol) || _names.ContainsKey(symbol.Name) || TryGetFirstWildcardMatch(symbol, out _, out _); 236if (_symbols.TryGetValue(symbol, out value) || _names.TryGetValue(symbol.Name, out value)) 253=> other != null && _names.IsEqualTo(other._names) && _symbols.IsEqualTo(other._symbols) && _wildcardNamesBySymbolKind.IsEqualTo(other._wildcardNamesBySymbolKind); 259HashUtilities.Combine(_symbols, ref hashCode);