7 references to Module
Microsoft.CodeAnalysis.Features (7)
Contracts\EditAndContinue\ManagedMethodId.cs (5)
38/// The unique identifier for the method within <see cref="Module"/>. 49return Module == other.Module && Method.Equals(other.Method); 56return Module.GetHashCode() ^ Method.GetHashCode(); 63internal string GetDebuggerDisplay() => $"mvid={Module} {Method.GetDebuggerDisplay()}";
EditAndContinue\EditSession.cs (2)
1404if (moduleId == instruction.Method.Module && !baseActiveStatement.IsMethodUpToDate) 1417if (methodInstance.Module != moduleId)