9 references to IsPartialDefinition
Microsoft.CodeAnalysis.CSharp (9)
Symbols\MemberSymbolExtensions.cs (1)
579
or SourceConstructorSymbol {
IsPartialDefinition
: true }
Symbols\Source\SourceConstructorSymbol.cs (4)
68
if (
IsPartialDefinition
&& syntax.Initializer is { } initializer)
281
Debug.Assert(this.
IsPartialDefinition
);
341
internal SourceConstructorSymbol? SourcePartialImplementationPart =>
IsPartialDefinition
? OtherPartOfPartial : null;
349
Debug.Assert(definition.
IsPartialDefinition
);
Symbols\Source\SourceMemberContainerSymbol.cs (4)
3754
constructor.
IsPartialDefinition
? ErrorCode.ERR_PartialMemberMissingImplementation : ErrorCode.ERR_PartialMemberMissingDefinition,
3881
else if (currentConstructor.
IsPartialDefinition
&&
3882
(prevConstructor.
IsPartialDefinition
|| (prevConstructor.OtherPartOfPartial is { } otherDefinition && !ReferenceEquals(otherDefinition, currentConstructor))))
3983
if (part1.
IsPartialDefinition
)