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

6 lines
185 B
C#

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