10 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
519
Contract.ThrowIfFalse(oldProject.
SupportsEditAndContinue
());
520
Contract.ThrowIfFalse(newProject.
SupportsEditAndContinue
());
EditAndContinue\DebuggingSession.cs (5)
465
if (!project.
SupportsEditAndContinue
())
717
if (!document.Project.
SupportsEditAndContinue
())
748
Debug.Assert(oldProject.
SupportsEditAndContinue
());
749
Debug.Assert(newProject.
SupportsEditAndContinue
());
851
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
())