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