3 instantiations of AnonymousDelegateWithIndexedNamePartialKey
Microsoft.CodeAnalysis.CSharp (3)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (1)
499
var key = new
AnonymousDelegateWithIndexedNamePartialKey
(delegateTemplate.Arity, delegateTemplate.DelegateInvokeMethod.ParameterCount);
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
196
anonymousDelegatesWithIndexedNames.AddPooled(new
AnonymousDelegateWithIndexedNamePartialKey
(type.Arity, parameterCount), value);
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
654
keySelector: template => new
AnonymousDelegateWithIndexedNamePartialKey
(template.Arity, template.DelegateInvokeMethod.ParameterCount),
10 references to AnonymousDelegateWithIndexedNamePartialKey
Microsoft.CodeAnalysis (7)
Emit\EditAndContinue\SymbolMatcher.cs (4)
141
private ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>> MapAnonymousDelegatesWithIndexedNames(
142
ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>> previousDelegates,
143
ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>> newDelegates)
150
var builder = ImmutableSegmentedDictionary.CreateBuilder<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>>();
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
13
ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>>? anonymousDelegatesWithIndexedNames)
38
public ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>> AnonymousDelegatesWithIndexedNames { get; }
39
= anonymousDelegatesWithIndexedNames ?? ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>>.Empty;
Microsoft.CodeAnalysis.CSharp (3)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (1)
499
var
key = new AnonymousDelegateWithIndexedNamePartialKey(delegateTemplate.Arity, delegateTemplate.DelegateInvokeMethod.ParameterCount);
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
120
var anonymousDelegatesWithIndexedNames = PooledDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ArrayBuilder<AnonymousTypeValue>>.GetInstance();
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
646
internal ImmutableSegmentedDictionary<
AnonymousDelegateWithIndexedNamePartialKey
, ImmutableArray<AnonymousTypeValue>> GetAnonymousDelegatesWithIndexedNames()