6 lines
192 B
C#
6 lines
192 B
C#
namespace Nub.Lang.Parsing;
|
|
|
|
public class BlockNode(IReadOnlyCollection<StatementNode> statements) : Node
|
|
{
|
|
public IReadOnlyCollection<StatementNode> Statements { get; } = statements;
|
|
} |