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)
241if (!document.DocumentState.SupportsEditAndContinue()) 411if (documentState.SupportsEditAndContinue())
EditAndContinue\DebuggingSession.cs (3)
458if (!document.DocumentState.SupportsEditAndContinue()) 741if (document?.State.SupportsEditAndContinue() != true) 878if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.SupportsEditAndContinue() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (3)
350if (!document.State.SupportsEditAndContinue()) 371if (!document.State.SupportsEditAndContinue()) 387if (!document.State.SupportsEditAndContinue())
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
445Assert.False(designTimeOnlyDocument2.State.SupportsEditAndContinue());