9 references to SynthesizedDelegateKey
Microsoft.CodeAnalysis (9)
Emit\EditAndContinue\SymbolMatcher.cs (3)
122
private ImmutableSegmentedDictionary<
SynthesizedDelegateKey
, SynthesizedDelegateValue> MapAnonymousDelegates(IReadOnlyDictionary<
SynthesizedDelegateKey
, SynthesizedDelegateValue> anonymousDelegates)
124
var builder = ImmutableSegmentedDictionary.CreateBuilder<
SynthesizedDelegateKey
, SynthesizedDelegateValue>();
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
12
ImmutableSegmentedDictionary<
SynthesizedDelegateKey
, SynthesizedDelegateValue>? anonymousDelegates,
30
public ImmutableSegmentedDictionary<
SynthesizedDelegateKey
, SynthesizedDelegateValue> AnonymousDelegates { get; }
31
= anonymousDelegates ?? ImmutableSegmentedDictionary<
SynthesizedDelegateKey
, SynthesizedDelegateValue>.Empty;
Emit\SynthesizedDelegateKey.cs (3)
9
internal readonly struct SynthesizedDelegateKey : IEquatable<
SynthesizedDelegateKey
>
19
=> obj is
SynthesizedDelegateKey
other && Equals(other);
21
public bool Equals(
SynthesizedDelegateKey
other)