Base:
property
IsAbstract
Microsoft.CodeAnalysis.CSharp.Symbol.IsAbstract
17 references to IsAbstract
Microsoft.CodeAnalysis.CSharp (17)
Symbols\Source\SourceCustomEventSymbol.cs (4)
124
if (checkBody && !
IsAbstract
&& accessor.Body == null && accessor.ExpressionBody == null && accessor.SemicolonToken.Kind() == SyntaxKind.SemicolonToken)
130
if (
IsAbstract
)
142
else if (isExplicitInterfaceImplementation && !
IsAbstract
)
147
if (isExplicitInterfaceImplementation &&
IsAbstract
&& syntax.AccessorList == null)
Symbols\Source\SourceEventSymbol.cs (9)
582
Debug.Assert(!IsStatic || ContainingType.IsInterface || (!
IsAbstract
&& !IsVirtual)); // Otherwise should have been reported and cleared earlier.
588
if (this.DeclaredAccessibility == Accessibility.Private && (IsVirtual || (
IsAbstract
&& !isExplicitInterfaceImplementationInInterface) || IsOverride))
607
else if (IsSealed && !IsOverride && !(isExplicitInterfaceImplementationInInterface &&
IsAbstract
))
620
else if (IsPartial &&
IsAbstract
)
624
else if (
IsAbstract
&& ContainingType.TypeKind == TypeKind.Struct)
634
else if (
IsAbstract
&& IsExtern)
638
else if (
IsAbstract
&& IsSealed && !isExplicitInterfaceImplementationInInterface)
642
else if (
IsAbstract
&& IsVirtual)
670
else if (
IsAbstract
&& !ContainingType.IsAbstract && (ContainingType.TypeKind == TypeKind.Class || ContainingType.TypeKind == TypeKind.Submission))
Symbols\Source\SourceFieldLikeEventSymbol.cs (4)
75
else if (this.
IsAbstract
)
91
if (hasInitializer || !(this.IsExtern || this.
IsAbstract
|| this.IsPartial))
104
if ((
IsAbstract
|| IsVirtual) && IsStatic)
118
else if (!this.
IsAbstract
&& !this.IsPartialDefinition)