15 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (14)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
514Contract.ThrowIfFalse(oldProject.SupportsEditAndContinue()); 515Contract.ThrowIfFalse(newProject.SupportsEditAndContinue());
EditAndContinue\CommittedSolution.cs (1)
394if (!project.SupportsEditAndContinue())
EditAndContinue\DebuggingSession.cs (6)
277Debug.Assert(project.SupportsEditAndContinue()); 452if (!project.SupportsEditAndContinue()) 747if (!document.Project.SupportsEditAndContinue()) 777Debug.Assert(oldProject.SupportsEditAndContinue()); 778Debug.Assert(newProject.SupportsEditAndContinue()); 878if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (5)
288if (!newProject.SupportsEditAndContinue()) 303if (!oldProject.SupportsEditAndContinue()) 337if (!newProject.SupportsEditAndContinue()) 510if (!newProject.SupportsEditAndContinue() || oldProject.State == newProject.State) 888if (!newProject.SupportsEditAndContinue(Log))
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
446Assert.True(designTimeOnlyDocument2.Project.SupportsEditAndContinue());