15 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
856Assert.True(designTimeOnlyDocument2.Project.SupportsEditAndContinue());
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\CommittedSolution.cs (1)
362if (!project.SupportsEditAndContinue())
EditAndContinue\DebuggingSession.cs (11)
254Debug.Assert(project.SupportsEditAndContinue()); 461if (!project.SupportsEditAndContinue()) 649if (!document.Project.SupportsEditAndContinue()) 679Debug.Assert(oldProject.SupportsEditAndContinue()); 680Debug.Assert(newProject.SupportsEditAndContinue()); 777if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue()) 999Debug.Assert(oldProject.SupportsEditAndContinue()); 1000Debug.Assert(newProject.SupportsEditAndContinue()); 1020var id = (oldProject?.SupportsEditAndContinue() == true) 1058Debug.Assert(oldProject.SupportsEditAndContinue()); 1059Debug.Assert(newProject.SupportsEditAndContinue());
EditAndContinue\EditSession.cs (2)
332if (!newProject.SupportsEditAndContinue()) 465if (!newProject.SupportsEditAndContinue() || oldProject.State == newProject.State)