27 lines
662 B
C#
27 lines
662 B
C#
using Microsoft.CodeAnalysis.Syntax.InternalSyntax;
|
|||
|
|
using Roslyn.Utilities;
|
||
|
|
|
||
|
|
namespace Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax;
|
||
|
|
|
||
|
|
internal abstract class MemberDeclarationSyntax : CSharpSyntaxNode
|
||
|
|
{
|
||
|
|
public abstract SyntaxList<AttributeListSyntax> AttributeLists { get; }
|
||
|
|
|
||
|
|
public abstract SyntaxList<SyntaxToken> Modifiers { get; }
|
||
|
|
|
||
|
|
internal MemberDeclarationSyntax(SyntaxKind kind, DiagnosticInfo[]? diagnostics, SyntaxAnnotation[]? annotations)
|
||
|
|
: base(kind, diagnostics, annotations)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
internal MemberDeclarationSyntax(SyntaxKind kind)
|
||
|
|
: base(kind)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
protected MemberDeclarationSyntax(ObjectReader reader)
|
||
|
|
: base(reader)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|