3 writes to _symbols
Test.Utilities (3)
SymbolNamesWithValueOption.cs (3)
66
_symbols
= symbols;
73
_symbols
= ImmutableDictionary<ISymbol, TValue>.Empty;
372
internal 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 _);
236
if (
_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);
259
HashUtilities.Combine(
_symbols
, ref hashCode);