16 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (15)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
514
Contract.ThrowIfFalse(oldProject.
SupportsEditAndContinue
());
515
Contract.ThrowIfFalse(newProject.
SupportsEditAndContinue
());
EditAndContinue\DebuggingSession.cs (6)
277
Debug.Assert(project.
SupportsEditAndContinue
());
464
if (!project.
SupportsEditAndContinue
())
715
if (!document.Project.
SupportsEditAndContinue
())
746
Debug.Assert(oldProject.
SupportsEditAndContinue
());
747
Debug.Assert(newProject.
SupportsEditAndContinue
());
849
if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.
SupportsEditAndContinue
())
EditAndContinue\EditAndContinueService.cs (1)
138
where 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)
1098
if (!newProject.
SupportsEditAndContinue
(Log))
1104
Debug.Assert(oldProject == null || oldProject.
SupportsEditAndContinue
());
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
961
Assert.True(designTimeOnlyDocument2.Project.
SupportsEditAndContinue
());