3 instantiations of SynthesizedDelegateKey
Microsoft.CodeAnalysis.CSharp (3)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (1)
483var key = new SynthesizedDelegateKey(delegateSymbol.MetadataName);
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
137var key = new SynthesizedDelegateKey(reader.GetString(def.Name));
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
625keySelector: delegateSymbol => new CodeAnalysis.Emit.SynthesizedDelegateKey(delegateSymbol.MetadataName),
10 references to SynthesizedDelegateKey
Microsoft.CodeAnalysis (6)
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
12ImmutableSegmentedDictionary<SynthesizedDelegateKey, SynthesizedDelegateValue>? anonymousDelegates, 30public ImmutableSegmentedDictionary<SynthesizedDelegateKey, SynthesizedDelegateValue> AnonymousDelegates { get; } 31= anonymousDelegates ?? ImmutableSegmentedDictionary<SynthesizedDelegateKey, SynthesizedDelegateValue>.Empty;
Emit\SynthesizedDelegateKey.cs (3)
9internal readonly struct SynthesizedDelegateKey : IEquatable<SynthesizedDelegateKey> 19=> obj is SynthesizedDelegateKey other && Equals(other); 21public bool Equals(SynthesizedDelegateKey other)
Microsoft.CodeAnalysis.CSharp (4)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (1)
483var key = new SynthesizedDelegateKey(delegateSymbol.MetadataName);
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (2)
121var anonymousDelegates = ImmutableSegmentedDictionary.CreateBuilder<SynthesizedDelegateKey, SynthesizedDelegateValue>(); 137var key = new SynthesizedDelegateKey(reader.GetString(def.Name));
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
619internal ImmutableSegmentedDictionary<CodeAnalysis.Emit.SynthesizedDelegateKey, CodeAnalysis.Emit.SynthesizedDelegateValue> GetAnonymousDelegates()