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