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