6 references to IsPartial
Microsoft.CodeAnalysis.CSharp (6)
Symbols\MemberSymbolExtensions.cs (1)
553
or SourcePropertySymbol {
IsPartial
: true }
Symbols\Source\SourcePropertySymbol.cs (2)
785
internal bool IsPartialDefinition =>
IsPartial
&& !AccessorsHaveImplementation && !HasExternModifier;
787
internal bool IsPartialImplementation =>
IsPartial
&& (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (3)
1082
else if (
IsPartial
&& !ContainingType.IsPartial())
1086
else if (
IsPartial
&& isExplicitInterfaceImplementation)
1090
else if (
IsPartial
&& IsAbstract)