13 references to SupportsEditAndContinue
Microsoft.CodeAnalysis.EditorFeatures (2)
EditAndContinue\ActiveStatementTrackingService.cs (1)
167
if (!designTimeDocument.DocumentState.
SupportsEditAndContinue
())
EditAndContinue\PdbMatchingSourceTextProvider.cs (1)
76
if (!oldDocument.State.
SupportsEditAndContinue
())
Microsoft.CodeAnalysis.Features (10)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
532
Contract.ThrowIfFalse(newDocument == null || newDocument.State.
SupportsEditAndContinue
());
533
Contract.ThrowIfFalse(oldDocument == null || oldDocument.State.
SupportsEditAndContinue
());
EditAndContinue\CommittedSolution.cs (2)
241
if (!document.DocumentState.
SupportsEditAndContinue
())
411
if (documentState.
SupportsEditAndContinue
())
EditAndContinue\DebuggingSession.cs (3)
458
if (!document.DocumentState.
SupportsEditAndContinue
())
741
if (document?.State.
SupportsEditAndContinue
() != true)
878
if (_isDisposed || !EditSession.InBreakState || !mappedDocument.State.
SupportsEditAndContinue
() || !mappedDocument.Project.SupportsEditAndContinue())
EditAndContinue\EditSession.cs (3)
350
if (!document.State.
SupportsEditAndContinue
())
371
if (!document.State.
SupportsEditAndContinue
())
387
if (!document.State.
SupportsEditAndContinue
())
Microsoft.CodeAnalysis.Features.UnitTests (1)
EditAndContinue\EditAndContinueWorkspaceServiceTests.cs (1)
445
Assert.False(designTimeOnlyDocument2.State.
SupportsEditAndContinue
());