Rename bound nodes

This commit is contained in:
nub31
2025-07-05 14:56:14 +02:00
parent aba21a0e8f
commit 9793adeb79
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
using Syntax.Tokenization;
namespace Syntax.Typing.BoundNode;
public abstract record BoundNode(IEnumerable<Token> Tokens);
public record BoundBlockNode(IEnumerable<Token> Tokens, List<BoundStatementNode> Statements) : BoundNode(Tokens);