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