1 write to DeletedSymbolContainer
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
55DeletedSymbolContainer = deletedSymbolContainer;
6 references to DeletedSymbolContainer
Microsoft.CodeAnalysis.Features (4)
EditAndContinue\AbstractEditAndContinueAnalyzer.cs (2)
4239if (x.DeletedSymbolContainer is null != y.DeletedSymbolContainer is null)
EditAndContinue\EditSession.cs (2)
986else if (edit is { Kind: SemanticEditKind.Delete, DeletedSymbolContainer: not null }) 989newResolution = edit.DeletedSymbolContainer.Value.Resolve(newCompilation, cancellationToken: cancellationToken);
Microsoft.CodeAnalysis.Features.Test.Utilities (2)
EditAndContinue\EditAndContinueTestVerifier.cs (2)
279.Where(e => e is { PartialType: null, DeletedSymbolContainer: null }) 408var deletedSymbolContainer = actualSemanticEdit.DeletedSymbolContainer?.Resolve(newCompilation).Symbol;