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)
845var info = new AddedOrChangedMethodInfo(
13 references to AddedOrChangedMethodInfo
Microsoft.CodeAnalysis (13)
Emit\EditAndContinue\AddedOrChangedMethodInfo.cs (1)
59public AddedOrChangedMethodInfo MapTypes(SymbolMatcher map)
Emit\EditAndContinue\DefinitionMap.cs (1)
188if (baseline.AddedOrChangedMethods.TryGetValue(methodIndex, out var addedOrChangedMethod))
Emit\EditAndContinue\DeltaMetadataWriter.cs (4)
73private readonly Dictionary<IMethodDefinition, AddedOrChangedMethodInfo> _addedOrChangedMethods; 134_addedOrChangedMethods = new Dictionary<IMethodDefinition, AddedOrChangedMethodInfo>(Cci.SymbolEquivalentEqualityComparer.Instance); 175var addedOrChangedMethodsByIndex = new Dictionary<int, AddedOrChangedMethodInfo>(); 845var info = new AddedOrChangedMethodInfo(
Emit\EditAndContinue\EmitBaseline.cs (4)
253methodsAddedOrChanged: new Dictionary<int, AddedOrChangedMethodInfo>(), 314internal readonly IReadOnlyDictionary<int, AddedOrChangedMethodInfo> AddedOrChangedMethods; 374IReadOnlyDictionary<int, AddedOrChangedMethodInfo> methodsAddedOrChanged, 479IReadOnlyDictionary<int, AddedOrChangedMethodInfo> addedOrChangedMethods,
Emit\EditAndContinue\SymbolMatcher.cs (3)
94private IReadOnlyDictionary<int, AddedOrChangedMethodInfo> MapAddedOrChangedMethods(IReadOnlyDictionary<int, AddedOrChangedMethodInfo> addedOrChangedMethods) 96var result = new Dictionary<int, AddedOrChangedMethodInfo>();