Files

22 lines
475 B
C#
Raw Permalink Normal View History

2026-08-27 10:56:38 -06:00
using Roslyn.Utilities;
namespace Microsoft.CodeAnalysis.CSharp.Syntax.InternalSyntax;
internal abstract class CollectionElementSyntax : CSharpSyntaxNode
{
internal CollectionElementSyntax(SyntaxKind kind, DiagnosticInfo[]? diagnostics, SyntaxAnnotation[]? annotations)
: base(kind, diagnostics, annotations)
{
}
internal CollectionElementSyntax(SyntaxKind kind)
: base(kind)
{
}
protected CollectionElementSyntax(ObjectReader reader)
: base(reader)
{
}
}