1 write to DeletedSymbolContainer
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
69DeletedSymbolContainer = deletedSymbolContainer;
6 references to DeletedSymbolContainer
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
EditAndContinue\EditAndContinueTestHelpers.cs (2)
233.Where(e => e.PartialType == null && e.DeletedSymbolContainer is null) 324var deletedSymbolContainer = actualSemanticEdit.DeletedSymbolContainer?.Resolve(newCompilation, ignoreAssemblyKey: true).Symbol;
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
3672if (x.DeletedSymbolContainer is null != y.DeletedSymbolContainer is null)
EditAndContinue\EditSession.cs (2)
696else if (edit.Kind == SemanticEditKind.Delete && edit.DeletedSymbolContainer is not null) 699newResolution = edit.DeletedSymbolContainer.Value.Resolve(newCompilation, ignoreAssemblyKey: true, cancellationToken);