8 references to Method
Microsoft.CodeAnalysis.Features (8)
Contracts\EditAndContinue\ManagedInstructionId.cs (4)
41return Method.Equals(other.Method) && ILOffset == other.ILOffset; 48return Method.GetHashCode() ^ ILOffset; 55internal string GetDebuggerDisplay() => $"{Method.GetDebuggerDisplay()} IL_{ILOffset:X4}";
EditAndContinue\ActiveStatementsMap.cs (1)
146if (remapping.TryGetValue(instructionId.Method, out var regionsInMethod))
EditAndContinue\EditSession.cs (3)
1338var methodId = instructionId.Method.Method; 1404if (moduleId == instruction.Method.Module && !baseActiveStatement.IsMethodUpToDate) 1406unremappedActiveMethods.Add(instruction.Method.Method);