1 write to PartialType
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\SemanticEditInfo.cs (1)
54
PartialType
= partialType;
6 references to PartialType
Microsoft.CodeAnalysis.Features (6)
EditAndContinue\EditSession.cs (5)
719
if (edit.
PartialType
== null)
752
.Where(edit => edit is {
PartialType
: not null, Kind: SemanticEditKind.Update })
753
.GroupBy(edit => edit.
PartialType
!.Value, symbolKeyComparer);
784
if (edit.
PartialType
!= null)
789
var syntaxMaps = (edit.Kind == SemanticEditKind.Update) ? mergedUpdateEditSyntaxMaps[edit.
PartialType
.Value] : default;
EditAndContinue\SemanticEditInfo.cs (1)
122
/// Specified if the edit needs to be merged with other edits of the same <see cref="
PartialType
"/>.