This commit is contained in:
nub31
2025-05-24 21:29:47 +02:00
parent 26906ea689
commit 30b3df626a
28 changed files with 154 additions and 86 deletions

View File

@@ -1,3 +1,5 @@
namespace Nub.Lang.Frontend.Parsing;
using Nub.Lang.Frontend.Lexing;
public abstract class StatementNode : Node;
namespace Nub.Lang.Frontend.Parsing;
public abstract class StatementNode(IReadOnlyList<Token> tokens) : Node(tokens);