13 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.EditorFeatures (2)
EditAndContinue\ActiveStatementTrackingService.cs (1)
167if (!designTimeDocument.DocumentState.SupportsEditAndContinue())
EditAndContinue\PdbMatchingSourceTextProvider.cs (1)
76if (!oldDocument.State.SupportsEditAndContinue())
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
532Contract.ThrowIfFalse(newDocument == null || newDocument.State.SupportsEditAndContinue()); 533Contract.ThrowIfFalse(oldDocument == null || oldDocument.State.SupportsEditAndContinue());
EditAndContinue\CommittedSolution.cs (2)
238if (!document.DocumentState.SupportsEditAndContinue()) 408if (documentState.SupportsEditAndContinue())
EditAndContinue\DebuggingSession.cs (3)
471if (!document.DocumentState.SupportsEditAndContinue()) 710if (document?.State.SupportsEditAndContinue() != true) 850if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (3)
354if (!document.State.SupportsEditAndContinue()) 375if (!document.State.SupportsEditAndContinue()) 391if (!document.State.SupportsEditAndContinue())
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
967Assert.False(designTimeOnlyDocument2.State.SupportsEditAndContinue());