10 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
519Contract.ThrowIfFalse(oldProject.SupportsEditAndContinue()); 520Contract.ThrowIfFalse(newProject.SupportsEditAndContinue());
EditAndContinue\DebuggingSession.cs (5)
468if (!project.SupportsEditAndContinue()) 730if (!document.Project.SupportsEditAndContinue()) 761Debug.Assert(oldProject.SupportsEditAndContinue()); 762Debug.Assert(newProject.SupportsEditAndContinue()); 864if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (3)
609if (!newProject.SupportsEditAndContinue() || oldProject.State == newProject.State) 1187var projectSupportsEditAndContinue = newProject.SupportsEditAndContinue(Log); 1188if (oldProject != null && projectSupportsEditAndContinue != oldProject.SupportsEditAndContinue())