9 references to IsPartial
Microsoft.CodeAnalysis.CSharp (7)
Symbols\MemberSymbolExtensions.cs (1)
799
or SourcePropertySymbol {
IsPartial
: true }
Symbols\Source\SourcePropertySymbol.cs (2)
850
internal bool IsPartialDefinition =>
IsPartial
&& !AccessorsHaveImplementation && !HasExternModifier;
852
internal bool IsPartialImplementation =>
IsPartial
&& (AccessorsHaveImplementation || HasExternModifier);
Symbols\Source\SourcePropertySymbolBase.cs (4)
784
Debug.Assert(!
IsPartial
);
1113
else if (
IsPartial
&& !ContainingType.IsPartial())
1117
else if (
IsPartial
&& isExplicitInterfaceImplementation)
1121
else if (
IsPartial
&& IsAbstract)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (2)
FieldKeywordTests.cs (2)
9037
Assert.Equal(property.
IsPartial
, property.IsPartialDefinition);
9048
Assert.True(otherPart.
IsPartial
);