9 instantiations of AnonymousTypeValue
Microsoft.CodeAnalysis (2)
Microsoft.CodeAnalysis.CSharp (4)
Microsoft.CodeAnalysis.VisualBasic (3)
65 references to AnonymousTypeValue
Microsoft.CodeAnalysis (20)
Emit\EditAndContinue\EmitBaseline.cs (12)
70public readonly IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> AnonymousTypes;
82public readonly IReadOnlyDictionary<string, AnonymousTypeValue> AnonymousDelegatesWithIndexedNames;
93IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypes,
95IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames,
338private readonly IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue>? _anonymousTypeMap;
340private readonly IReadOnlyDictionary<string, AnonymousTypeValue>? _anonymousDelegatesWithIndexedNames;
369IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue>? anonymousTypeMap,
371IReadOnlyDictionary<string, AnonymousTypeValue>? anonymousDelegatesWithIndexedNames,
474IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypeMap,
476IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames,
530internal IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> AnonymousTypeMap
560internal IReadOnlyDictionary<string, AnonymousTypeValue> AnonymousDelegatesWithIndexedNames
Microsoft.CodeAnalysis.CSharp (30)
Emitter\EditAndContinue\CSharpSymbolMatcher.cs (13)
29IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypeMap,
31IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames,
44IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypeMap,
46IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames,
284private readonly IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> _anonymousTypeMap;
286private readonly IReadOnlyDictionary<string, AnonymousTypeValue> _anonymousDelegatesWithIndexedNames;
312IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypeMap,
314IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames,
333if (TryFindAnonymousType(type, out var otherType))
547TryFindAnonymousType(typeTemplate, out var value);
555TryFindAnonymousDelegateWithIndexedName(delegateTemplate, out var value);
679internal bool TryFindAnonymousType(AnonymousTypeManager.AnonymousTypeTemplateSymbol type, out AnonymousTypeValue otherType)
694internal bool TryFindAnonymousDelegateWithIndexedName(AnonymousTypeManager.AnonymousDelegateTemplateSymbol type, out AnonymousTypeValue otherType)
Emitter\EditAndContinue\PEDeltaAssemblyBuilder.cs (8)
138out IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> anonymousTypes,
139out IReadOnlyDictionary<string, AnonymousTypeValue> anonymousDelegatesWithIndexedNames)
147var types = new Dictionary<AnonymousTypeKey, AnonymousTypeValue>();
148var delegates = new Dictionary<string, AnonymousTypeValue>();
175var value = new AnonymousTypeValue(name, index, type.GetCciAdapter());
186var value = new AnonymousTypeValue(name, index, type.GetCciAdapter());
260public IReadOnlyDictionary<AnonymousTypeKey, AnonymousTypeValue> GetAnonymousTypeMap()
276public IReadOnlyDictionary<string, AnonymousTypeValue> GetAnonymousDelegatesWithIndexedNames()
Microsoft.CodeAnalysis.VisualBasic (15)