2 instantiations of AnonymousTypeValue
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\SymbolMatcher.cs (2)
116
builder.Add(key, new
AnonymousTypeValue
(value.Name, value.UniqueIndex, type));
143
builder.Add(key, values.SelectAsArray(value => new
AnonymousTypeValue
(
12 references to AnonymousTypeValue
Microsoft.CodeAnalysis (12)
Emit\EditAndContinue\SymbolMatcher.cs (6)
108
private ImmutableSegmentedDictionary<AnonymousTypeKey,
AnonymousTypeValue
> MapAnonymousTypes(IReadOnlyDictionary<AnonymousTypeKey,
AnonymousTypeValue
> anonymousTypeMap)
110
var builder = ImmutableSegmentedDictionary.CreateBuilder<AnonymousTypeKey,
AnonymousTypeValue
>();
136
private ImmutableSegmentedDictionary<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>> MapAnonymousDelegatesWithIndexedNames(
137
IReadOnlyDictionary<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>> anonymousDelegates)
139
var builder = ImmutableSegmentedDictionary.CreateBuilder<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>>();
Emit\EditAndContinue\SynthesizedTypeMaps.cs (6)
11
ImmutableSegmentedDictionary<AnonymousTypeKey,
AnonymousTypeValue
>? anonymousTypeMap,
13
ImmutableSegmentedDictionary<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>>? anonymousDelegatesWithIndexedNames)
23
public ImmutableSegmentedDictionary<AnonymousTypeKey,
AnonymousTypeValue
> AnonymousTypes { get; }
24
= anonymousTypeMap ?? ImmutableSegmentedDictionary<AnonymousTypeKey,
AnonymousTypeValue
>.Empty;
37
public ImmutableSegmentedDictionary<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>> AnonymousDelegatesWithIndexedNames { get; }
38
= anonymousDelegatesWithIndexedNames ?? ImmutableSegmentedDictionary<AnonymousDelegateWithIndexedNamePartialKey, ImmutableArray<
AnonymousTypeValue
>>.Empty;