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