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