1 write to PartialType
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
68PartialType = partialType;
10 references to PartialType
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
EditAndContinue\EditAndContinueTestHelpers.cs (2)
233.Where(e => e.PartialType == null && e.DeletedSymbolContainer is null) 339actualSemanticEdit.PartialType?.Resolve(newCompilation, ignoreAssemblyKey: true).Symbol);
Microsoft.CodeAnalysis.Features (8)
EditAndContinue\EditSession.cs (5)
714if (edit.PartialType == null) 747.Where(edit => edit.PartialType != null) 748.GroupBy(edit => edit.PartialType!.Value, symbolKeyComparer); 780if (edit.PartialType != null) 785var syntaxMap = mergedSyntaxMaps[edit.PartialType.Value];
EditAndContinue\SemanticEditInfo.cs (3)
39/// Only available when <see cref="PartialType"/> is not null. 45/// Only available when <see cref="PartialType"/> is not null. 50/// Specified if the edit needs to be merged with other edits of the same <see cref="PartialType"/>.