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