11 references to Method
Microsoft.CodeAnalysis.Features (11)
Contracts\EditAndContinue\ManagedMethodId.cs (6)
43public int Token => Method.Token; 45public int Version => Method.Version; 49return Module == other.Module && Method.Equals(other.Method); 56return Module.GetHashCode() ^ Method.GetHashCode(); 63internal string GetDebuggerDisplay() => $"mvid={Module} {Method.GetDebuggerDisplay()}";
EditAndContinue\EditSession.cs (5)
1338var methodId = instructionId.Method.Method; 1406unremappedActiveMethods.Add(instruction.Method.Method); 1424if (!unremappedActiveMethods.Contains(methodInstance.Method)) 1435if (changedNonRemappableSpans.TryGetValue((methodInstance.Method, baseSpan), out var newSpan)) 1449nonRemappableRegionsBuilder.Add((methodInstance.Method, newRegion));