2 overrides of OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceOrdinaryMethodSymbol.cs (2)
1000
internal sealed override SourceOrdinaryMethodSymbol
OtherPartOfPartial
1067
internal sealed override SourceOrdinaryMethodSymbol
OtherPartOfPartial
=> _otherPartOfPartial;
10 references to OtherPartOfPartial
Microsoft.CodeAnalysis.CSharp (10)
Symbols\Source\SourceMemberContainerSymbol.cs (4)
4212
if (method.IsPartialImplementation && method.
OtherPartOfPartial
is null)
4216
else if (method is { IsPartialDefinition: true,
OtherPartOfPartial
: null, HasExplicitAccessModifier: true })
4285
(prevMethod.IsPartialImplementation || (prevMethod.
OtherPartOfPartial
is MethodSymbol otherImplementation && (object)otherImplementation != currentMethod)))
4291
(prevMethod.IsPartialDefinition || (prevMethod.
OtherPartOfPartial
is MethodSymbol otherDefinition && (object)otherDefinition != currentMethod)))
Symbols\Source\SourceOrdinaryMethodSymbol.cs (6)
346
return this.IsPartialDefinition && this.
OtherPartOfPartial
is null;
354
return this.IsPartialImplementation ? this.
OtherPartOfPartial
: null;
362
return this.IsPartialDefinition ? this.
OtherPartOfPartial
: null;
387
? this.
OtherPartOfPartial
?.IsExtern ?? false
397
? this.
OtherPartOfPartial
?.IsAsync ?? false
407
? this.
OtherPartOfPartial
?.IsIterator ?? false