1 write to _wildcardMatchResult
Test.Utilities (1)
SymbolNamesWithValueOption.cs (1)
376
internal ref readonly ConcurrentDictionary<ISymbol, KeyValuePair<string?, TValue?>> WildcardMatchResult => ref _symbolNamesWithValueOption.
_wildcardMatchResult
;
5 references to _wildcardMatchResult
Test.Utilities (5)
SymbolNamesWithValueOption.cs (5)
296
if (
_wildcardMatchResult
.TryGetValue(symbol, out var firstMatch))
312
_wildcardMatchResult
.AddOrUpdate(symbol, prefixedFirstMatchOrDefault.AsNullable(), (s, match) => prefixedFirstMatchOrDefault.AsNullable());
322
_wildcardMatchResult
.AddOrUpdate(symbol, unprefixedFirstMatchOrDefault.AsNullable(), (s, match) => unprefixedFirstMatchOrDefault.AsNullable());
332
_wildcardMatchResult
.AddOrUpdate(symbol, partialFirstMatchOrDefault.AsNullable(), (s, match) => partialFirstMatchOrDefault.AsNullable());
339
_wildcardMatchResult
.AddOrUpdate(symbol, new KeyValuePair<string?, TValue?>(null, default), (s, match) => new KeyValuePair<string?, TValue?>(null, default));