15 lines
476 B
C#
15 lines
476 B
C#
using System.Collections.Immutable;
|
|
|
|
namespace Microsoft.CodeAnalysis.CSharp;
|
|
|
|
internal abstract class BoundMultipleLocalDeclarationsBase : BoundStatement
|
|
{
|
|
public ImmutableArray<BoundLocalDeclaration> LocalDeclarations { get; }
|
|
|
|
protected BoundMultipleLocalDeclarationsBase(BoundKind kind, SyntaxNode syntax, ImmutableArray<BoundLocalDeclaration> localDeclarations, bool hasErrors = false)
|
|
: base(kind, syntax, hasErrors)
|
|
{
|
|
LocalDeclarations = localDeclarations;
|
|
}
|
|
}
|