11 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
514Contract.ThrowIfFalse(oldProject.SupportsEditAndContinue()); 515Contract.ThrowIfFalse(newProject.SupportsEditAndContinue());
EditAndContinue\DebuggingSession.cs (5)
465if (!project.SupportsEditAndContinue()) 716if (!document.Project.SupportsEditAndContinue()) 747Debug.Assert(oldProject.SupportsEditAndContinue()); 748Debug.Assert(newProject.SupportsEditAndContinue()); 850if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (3)
575if (!newProject.SupportsEditAndContinue() || oldProject.State == newProject.State) 1153var projectSupportsEditAndContinue = newProject.SupportsEditAndContinue(Log); 1154if (oldProject != null && projectSupportsEditAndContinue != oldProject.SupportsEditAndContinue())
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
995Assert.True(designTimeOnlyDocument2.Project.SupportsEditAndContinue());