6 instantiations of SynthesizedDelegateKey
Microsoft.CodeAnalysis.CSharp (3)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (1)
483var key = new SynthesizedDelegateKey(delegateSymbol.MetadataName);
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
136var key = new SynthesizedDelegateKey(reader.GetString(def.Name));
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
634keySelector: delegateSymbol => new CodeAnalysis.Emit.SynthesizedDelegateKey(delegateSymbol.MetadataName),
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (3)
Emit\EditAndContinue\SymbolMatcherTests.cs (3)
1465Assert.Contains(new SynthesizedDelegateKey("<>F{00000008}`3"), synthesizedDelegates0.Keys); 1466Assert.Contains(new SynthesizedDelegateKey("<>A{00000003}`2"), synthesizedDelegates0.Keys); 1467Assert.Contains(new SynthesizedDelegateKey("<>A{00000000,100000000}`33"), synthesizedDelegates0.Keys);
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)
120var anonymousDelegates = ImmutableSegmentedDictionary.CreateBuilder<SynthesizedDelegateKey, SynthesizedDelegateValue>(); 136var key = new SynthesizedDelegateKey(reader.GetString(def.Name));
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
628internal ImmutableSegmentedDictionary<CodeAnalysis.Emit.SynthesizedDelegateKey, CodeAnalysis.Emit.SynthesizedDelegateValue> GetAnonymousDelegates()