7 references to IsPartial
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
787
or SourcePropertySymbol {
IsPartial
: true }
Symbols\Source\SourcePropertySymbol.cs (2)
833
internal bool IsPartialDefinition =>
IsPartial
&& !AccessorsHaveImplementation && !HasExternModifier;
835
internal bool IsPartialImplementation =>
IsPartial
&& (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (4)
784
Debug.Assert(!
IsPartial
);
1098
else if (
IsPartial
&& !ContainingType.IsPartial())
1102
else if (
IsPartial
&& isExplicitInterfaceImplementation)
1106
else if (
IsPartial
&& IsAbstract)