10 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)
1395if (moduleId == instruction.Method.Module && !baseActiveStatement.IsMethodUpToDate) 1408if (methodInstance.Module != moduleId)
Microsoft.CodeAnalysis.Features.UnitTests (3)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (3)
4124Assert.Equal(module4, s.InstructionId.Method.Module); 4128Assert.Equal(module2, s.InstructionId.Method.Module); 4132Assert.Equal(module1, s.InstructionId.Method.Module);