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)
861var info = new AddedOrChangedMethodInfo(
12 references to AddedOrChangedMethodInfo
Microsoft.CodeAnalysis (12)
Emit\EditAndContinue\AddedOrChangedMethodInfo.cs (1)
59public AddedOrChangedMethodInfo MapTypes(SymbolMatcher map)
Emit\EditAndContinue\DeltaMetadataWriter.cs (4)
74private readonly Dictionary<IMethodDefinition, AddedOrChangedMethodInfo> _addedOrChangedMethods; 135_addedOrChangedMethods = new Dictionary<IMethodDefinition, AddedOrChangedMethodInfo>(Cci.SymbolEquivalentEqualityComparer.Instance); 176var addedOrChangedMethodsByIndex = new Dictionary<int, AddedOrChangedMethodInfo>(); 861var 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>();