2 instantiations of AnonymousTypeKey
Microsoft.CodeAnalysis.CSharp (2)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (1)
155
var key = new
AnonymousTypeKey
(builder.ToImmutable());
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TemplateSymbol.cs (1)
96
return new
AnonymousTypeKey
(properties);
10 references to AnonymousTypeKey
Microsoft.CodeAnalysis (6)
Emit\AnonymousTypeKey.cs (3)
63
internal readonly struct AnonymousTypeKey : IEquatable<
AnonymousTypeKey
>
74
public bool Equals(
AnonymousTypeKey
other)
81
return this.Equals((
AnonymousTypeKey
)obj);
Emit\EditAndContinue\SynthesizedTypeMaps.cs (3)
11
ImmutableSegmentedDictionary<
AnonymousTypeKey
, AnonymousTypeValue>? anonymousTypeMap,
23
public ImmutableSegmentedDictionary<
AnonymousTypeKey
, AnonymousTypeValue> AnonymousTypes { get; }
24
= anonymousTypeMap ?? ImmutableSegmentedDictionary<
AnonymousTypeKey
, AnonymousTypeValue>.Empty;
Microsoft.CodeAnalysis.CSharp (4)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (2)
119
var anonymousTypes = ImmutableSegmentedDictionary.CreateBuilder<
AnonymousTypeKey
, AnonymousTypeValue>();
155
var
key = new AnonymousTypeKey(builder.ToImmutable());
Symbols\AnonymousTypes\AnonymousTypeManager.Templates.cs (1)
632
internal ImmutableSegmentedDictionary<
AnonymousTypeKey
, AnonymousTypeValue> GetAnonymousTypeMap()
Symbols\AnonymousTypes\SynthesizedSymbols\AnonymousType.TemplateSymbol.cs (1)
93
internal
AnonymousTypeKey
GetAnonymousTypeKey()