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