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)
140
if (remapping.TryGetValue(instructionId.
Method
, out var regionsInMethod))
EditAndContinue\EditSession.cs (3)
1662
var methodId = instructionId.
Method
.Method;
1726
if (moduleId == instruction.
Method
.Module && !baseActiveStatement.IsMethodUpToDate)
1728
unremappedActiveMethods.Add(instruction.
Method
.Method);