2 instantiations of AddedOrChangedMethodInfo
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\AddedOrChangedMethodInfo.cs (1)
69return new AddedOrChangedMethodInfo(MethodId, mappedLocals, LambdaDebugInfo, ClosureDebugInfo, StateMachineTypeName, mappedHoistedLocalSlots, mappedAwaiterSlots, StateMachineStates);
Emit\EditAndContinue\DeltaMetadataWriter.cs (1)
902var info = new AddedOrChangedMethodInfo(
14 references to AddedOrChangedMethodInfo
Microsoft.CodeAnalysis (14)
Emit\EditAndContinue\AddedOrChangedMethodInfo.cs (1)
59public AddedOrChangedMethodInfo MapTypes(SymbolMatcher map)
Emit\EditAndContinue\DefinitionMap.cs (2)
245if (Baseline.AddedOrChangedMethods.TryGetValue(methodIndex, out var addedOrChangedMethod)) 673if (Baseline.AddedOrChangedMethods.TryGetValue(methodRowId, out var addedOrChangedMethod))
Emit\EditAndContinue\DeltaMetadataWriter.cs (4)
67private readonly Dictionary<IMethodDefinition, AddedOrChangedMethodInfo> _addedOrChangedMethods; 127_addedOrChangedMethods = new Dictionary<IMethodDefinition, AddedOrChangedMethodInfo>(Cci.SymbolEquivalentEqualityComparer.Instance); 182var addedOrChangedMethodsByIndex = new Dictionary<int, AddedOrChangedMethodInfo>(); 902var info = new AddedOrChangedMethodInfo(
Emit\EditAndContinue\EmitBaseline.cs (4)
195methodsAddedOrChanged: new Dictionary<int, AddedOrChangedMethodInfo>(), 260internal readonly IReadOnlyDictionary<int, AddedOrChangedMethodInfo> AddedOrChangedMethods; 316IReadOnlyDictionary<int, AddedOrChangedMethodInfo> methodsAddedOrChanged, 415IReadOnlyDictionary<int, AddedOrChangedMethodInfo> addedOrChangedMethods,
Emit\EditAndContinue\SymbolMatcher.cs (3)
96private IReadOnlyDictionary<int, AddedOrChangedMethodInfo> MapAddedOrChangedMethods(IReadOnlyDictionary<int, AddedOrChangedMethodInfo> addedOrChangedMethods) 98var result = new Dictionary<int, AddedOrChangedMethodInfo>();