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)
468
if (!project.
SupportsEditAndContinue
())
730
if (!document.Project.
SupportsEditAndContinue
())
761
Debug.Assert(oldProject.
SupportsEditAndContinue
());
762
Debug.Assert(newProject.
SupportsEditAndContinue
());
864
if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.
SupportsEditAndContinue
())
EditAndContinue\EditSession.cs (3)
609
if (!newProject.
SupportsEditAndContinue
() || oldProject.State == newProject.State)
1187
var projectSupportsEditAndContinue = newProject.
SupportsEditAndContinue
(Log);
1188
if (oldProject != null && projectSupportsEditAndContinue != oldProject.
SupportsEditAndContinue
())