16 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (15)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
514Contract.ThrowIfFalse(oldProject.SupportsEditAndContinue()); 515Contract.ThrowIfFalse(newProject.SupportsEditAndContinue());
EditAndContinue\CommittedSolution.cs (1)
391if (!project.SupportsEditAndContinue())
EditAndContinue\DebuggingSession.cs (6)
278Debug.Assert(project.SupportsEditAndContinue()); 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 (6)
287if (!newProject.SupportsEditAndContinue()) 302if (!oldProject.SupportsEditAndContinue()) 336if (!newProject.SupportsEditAndContinue()) 571if (!newProject.SupportsEditAndContinue() || oldProject.State == newProject.State) 1013if (!newProject.SupportsEditAndContinue(Log)) 1019Debug.Assert(oldProject == null || oldProject.SupportsEditAndContinue());
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
968Assert.True(designTimeOnlyDocument2.Project.SupportsEditAndContinue());