1 instantiation of PlaceholderLocal
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.cs (1)
4692
placeholder = new
PlaceholderLocal
(CurrentSymbol, identifier, type);
5 references to PlaceholderLocal
Microsoft.CodeAnalysis.CSharp (5)
FlowAnalysis\NullableWalker.cs (4)
418
private PooledDictionary<object,
PlaceholderLocal
>? _placeholderLocalsOpt;
2194
if (_placeholderLocalsOpt != null && _placeholderLocalsOpt.TryGetValue(expr, out
var
placeholder))
4689
_placeholderLocalsOpt ??= PooledDictionary<object,
PlaceholderLocal
>.GetInstance();
4690
if (!_placeholderLocalsOpt.TryGetValue(identifier, out
var
placeholder))
FlowAnalysis\NullableWalker.PlaceholderLocal.cs (1)
44
return obj is
PlaceholderLocal
other && _identifier.Equals(other._identifier);