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