This repository has been archived on 2025-10-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nub-lang-archive/Nub.Lang/Nub.Lang/Parsing/BlockNode.cs
nub31 59effadc19 ...
2025-01-26 19:56:02 +01:00

6 lines
192 B
C#

namespace Nub.Lang.Parsing;
public class BlockNode(IReadOnlyCollection<StatementNode> statements) : Node
{
public IReadOnlyCollection<StatementNode> Statements { get; } = statements;
}